-
-
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.
Showing
9 changed files
with
59 additions
and
4 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -14,6 +14,15 @@ | |
// You should have received a copy of the GNU General Public License | ||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
/** | ||
* MoodleBox change password form definition. | ||
* | ||
* @package tool_moodlebox | ||
* @copyright 2018 onwards Nicolas Martignoni {@link mailto:[email protected]} | ||
* @copyright 2024 onwards Patrick Lemaire | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
|
||
namespace tool_moodlebox\form; | ||
use moodleform; | ||
defined('MOODLE_INTERNAL') || die(); | ||
|
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 |
---|---|---|
|
@@ -14,6 +14,15 @@ | |
// You should have received a copy of the GNU General Public License | ||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
/** | ||
* MoodleBox set time and date form definition. | ||
* | ||
* @package tool_moodlebox | ||
* @copyright 2018 onwards Nicolas Martignoni {@link mailto:[email protected]} | ||
* @copyright 2024 onwards Patrick Lemaire | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
|
||
namespace tool_moodlebox\form; | ||
use moodleform; | ||
defined('MOODLE_INTERNAL') || die(); | ||
|
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 |
---|---|---|
|
@@ -14,6 +14,15 @@ | |
// You should have received a copy of the GNU General Public License | ||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
/** | ||
* MoodleBox resize partition form definition. | ||
* | ||
* @package tool_moodlebox | ||
* @copyright 2018 onwards Nicolas Martignoni {@link mailto:[email protected]} | ||
* @copyright 2024 onwards Patrick Lemaire | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
|
||
namespace tool_moodlebox\form; | ||
use moodleform; | ||
defined('MOODLE_INTERNAL') || die(); | ||
|
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 |
---|---|---|
|
@@ -14,6 +14,15 @@ | |
// You should have received a copy of the GNU General Public License | ||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
/** | ||
* MoodleBox restart and shutdown password form definition. | ||
* | ||
* @package tool_moodlebox | ||
* @copyright 2018 onwards Nicolas Martignoni {@link mailto:[email protected]} | ||
* @copyright 2024 onwards Patrick Lemaire | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
|
||
namespace tool_moodlebox\form; | ||
use moodleform; | ||
defined('MOODLE_INTERNAL') || die(); | ||
|
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 |
---|---|---|
|
@@ -14,6 +14,15 @@ | |
// You should have received a copy of the GNU General Public License | ||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
/** | ||
* MoodleBox wifi settings form definition. | ||
* | ||
* @package tool_moodlebox | ||
* @copyright 2018 onwards Nicolas Martignoni {@link mailto:[email protected]} | ||
* @copyright 2024 onwards Patrick Lemaire | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
|
||
namespace tool_moodlebox\form; | ||
use moodleform; | ||
defined('MOODLE_INTERNAL') || die(); | ||
|
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 |
---|---|---|
|
@@ -14,6 +14,14 @@ | |
// You should have received a copy of the GNU General Public License | ||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
/** | ||
* MoodleBox hooks callbacks. | ||
* | ||
* @package tool_moodlebox | ||
* @copyright 2024 onwards Patrick Lemaire | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
|
||
namespace tool_moodlebox; | ||
use core\hook\output\before_footer_html_generation; | ||
use html_writer; | ||
|
@@ -23,6 +31,7 @@ | |
* | ||
* @package tool_moodlebox | ||
* @copyright 2024 onwards Nicolas Martignoni {@link mailto:[email protected]} | ||
* @copyright 2024 onwards Patrick Lemaire | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
class hook_callbacks { | ||
|
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 |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
* Hook callbacks for MoodleBox plugin | ||
* | ||
* @package tool_moodlebox | ||
* @copyright 2024 onwards Nicolas Martignoni {@link mailto:[email protected]} | ||
* @copyright 2024 onwards Patrick Lemaire | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
|
||
|
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 |
---|---|---|
|
@@ -28,6 +28,7 @@ | |
* @link https://github.com/moodlebox/moodle-tool_moodlebox | ||
* @package tool_moodlebox | ||
* @copyright 2016 onwards Nicolas Martignoni {@link mailto:[email protected]} | ||
* @copyright 2024 onwards Patrick Lemaire | ||
* @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
|
||
|
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