forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MDL-82870 block_accessreview: Add clear heatmap messaging
- Loading branch information
1 parent
4e7e308
commit 3215e84
Showing
12 changed files
with
159 additions
and
35 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
45 changes: 45 additions & 0 deletions
45
admin/tool/brickfield/classes/local/areas/mod_h5pactivity/intro.php
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,45 @@ | ||
<?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/>. | ||
|
||
namespace tool_brickfield\local\areas\mod_h5pactivity; | ||
|
||
use tool_brickfield\local\areas\module_area_base; | ||
|
||
/** | ||
* H5P intro observer. | ||
* | ||
* @package tool_brickfield | ||
* @copyright 2024 onward: Brickfield Education Labs, www.brickfield.ie | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
class intro extends module_area_base { | ||
|
||
/** | ||
* Return the area table name. | ||
* @return string | ||
*/ | ||
public function get_tablename(): string { | ||
return 'h5pactivity'; | ||
} | ||
|
||
/** | ||
* Return the area field name. | ||
* @return string | ||
*/ | ||
public function get_fieldname(): string { | ||
return 'intro'; | ||
} | ||
} |
45 changes: 45 additions & 0 deletions
45
admin/tool/brickfield/classes/local/areas/mod_h5pactivity/name.php
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,45 @@ | ||
<?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/>. | ||
|
||
namespace tool_brickfield\local\areas\mod_h5pactivity; | ||
|
||
use tool_brickfield\local\areas\module_area_base; | ||
|
||
/** | ||
* H5P name observer. | ||
* | ||
* @package tool_brickfield | ||
* @copyright 2024 onward: Brickfield Education Labs, www.brickfield.ie | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
class name extends module_area_base { | ||
|
||
/** | ||
* Return the area table name. | ||
* @return string | ||
*/ | ||
public function get_tablename(): string { | ||
return 'h5pactivity'; | ||
} | ||
|
||
/** | ||
* Return the area field name. | ||
* @return string | ||
*/ | ||
public function get_fieldname(): string { | ||
return 'name'; | ||
} | ||
} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.