-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improvement: Added textinput, select
- Loading branch information
1 parent
e56c02e
commit 9fe4ccf
Showing
9 changed files
with
306 additions
and
42 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
<?php | ||
// This file is part of Moodle - http://moodle.org/ | ||
// | ||
// Moodle is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// Moodle is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
/** | ||
* The Wunderbyte table class is an extension of the tablelib table_sql class. | ||
* | ||
* @package local_wunderbyte_table | ||
* @copyright 2023 Wunderbyte Gmbh <[email protected]> | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
// phpcs:ignoreFile | ||
|
||
namespace local_wunderbyte_table\dynamicactionelements; | ||
|
||
defined('MOODLE_INTERNAL') || die(); | ||
|
||
/** | ||
* Wunderbyte table demo class. | ||
*/ | ||
class dynamiccheckbox { | ||
/** | ||
* Returns data format | ||
* @param string $valueid | ||
* @param string $uniqueid | ||
* @return array | ||
*/ | ||
public static function generate_data($valueid, $uniqueid) { | ||
return [ | ||
'label' => get_string('checkbox', 'local_wunderbyte_table'), | ||
'class' => 'btn btn-success', | ||
'href' => '#', | ||
'iclass' => 'fa fa-edit', | ||
'id' => $valueid.'-'.$uniqueid, | ||
'name' => $uniqueid.'-'. $valueid, | ||
'methodname' => 'togglecheckbox', | ||
'ischeckbox' => true, | ||
'data' => [ | ||
'id' => $valueid, | ||
'labelcolumn' => 'username', | ||
] | ||
]; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
<?php | ||
// This file is part of Moodle - http://moodle.org/ | ||
// | ||
// Moodle is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// Moodle is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
/** | ||
* The Wunderbyte table class is an extension of the tablelib table_sql class. | ||
* | ||
* @package local_wunderbyte_table | ||
* @copyright 2023 Wunderbyte Gmbh <[email protected]> | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
// phpcs:ignoreFile | ||
|
||
namespace local_wunderbyte_table\dynamicactionelements; | ||
|
||
defined('MOODLE_INTERNAL') || die(); | ||
|
||
/** | ||
* Wunderbyte table demo class. | ||
*/ | ||
class dynamicselect { | ||
/** | ||
* Returns data format | ||
* @param string $valueid | ||
* @param string $uniqueid | ||
* @return array | ||
*/ | ||
public static function generate_data($valueid, $uniqueid) { | ||
return [ | ||
'isselect' => true, | ||
'id' => $valueid . '-' . $uniqueid, | ||
'name' => $uniqueid . '-' . $valueid, | ||
'class' => 'form-select', | ||
'methodname' => 'selectoption', | ||
'data' => [ | ||
'id' => $valueid, | ||
], | ||
'options' => self::get_options(), | ||
]; | ||
} | ||
|
||
/** | ||
* Returns data format | ||
* @return array | ||
*/ | ||
private static function get_options() { | ||
return [ | ||
['value' => '', 'text' => 'Please select something', 'disabled' => true, 'selected' => true], | ||
['value' => 'option1', 'text' => 'Option 1'], | ||
['value' => 'option2', 'text' => 'Option 2'], | ||
['value' => 'option3', 'text' => 'Option 3'], | ||
]; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<?php | ||
// This file is part of Moodle - http://moodle.org/ | ||
// | ||
// Moodle is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// Moodle is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
/** | ||
* The Wunderbyte table class is an extension of the tablelib table_sql class. | ||
* | ||
* @package local_wunderbyte_table | ||
* @copyright 2023 Wunderbyte Gmbh <[email protected]> | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
// phpcs:ignoreFile | ||
|
||
namespace local_wunderbyte_table\dynamicactionelements; | ||
|
||
defined('MOODLE_INTERNAL') || die(); | ||
|
||
/** | ||
* Wunderbyte table demo class. | ||
*/ | ||
class dynamictextinput { | ||
/** | ||
* Returns data format for text input | ||
* @param string $valueid | ||
* @param string $uniqueid | ||
* @return array | ||
*/ | ||
public static function generate_data($valueid, $uniqueid) { | ||
return [ | ||
'istextinput' => true, | ||
'id' => $valueid . '-' . $uniqueid, | ||
'name' => $uniqueid . '-' . $valueid, | ||
'class' => 'form-control', | ||
'methodname' => 'textinputchange', | ||
'data' => [ | ||
'id' => $valueid, | ||
'placeholder' => 'Enter some text...', | ||
'maxlength' => 255, | ||
] | ||
]; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.