-
Notifications
You must be signed in to change notification settings - Fork 18
/
settings.php
59 lines (51 loc) · 2.6 KB
/
settings.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?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/>.
/**
* @package local_metadata
* @author Mike Churchward <mike.churchward@poetopensource.org>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
* @copyright 2017, onwards Poet
*/
defined('MOODLE_INTERNAL') || die;
// Required for non-standard context constants definition.
require_once($CFG->dirroot.'/local/metadata/lib.php');
if ($hassiteconfig) {
$ADMIN->add('localplugins', new admin_category('metadatafolder', get_string('metadata', 'local_metadata')));
$contextplugins = core_component::get_plugin_list('metadatacontext');
// Create a settings page and add an enable setting for each metadata context type.
$settings = new admin_settingpage('local_metadata', get_string('settings'));
if ($ADMIN->fulltree) {
foreach ($contextplugins as $contextname => $contextlocation) {
$item = new admin_setting_configcheckbox('metadatacontext_'.$contextname.'/metadataenabled',
new lang_string('metadataenabled', 'metadatacontext_'.$contextname), '', 0);
$settings->add($item);
}
}
$ADMIN->add('metadatafolder', $settings);
// Create a new external settings page for each metadata context type data definitions.
foreach ($contextplugins as $contextname => $contextlocation) {
$contexthandler = \local_metadata\context\context_handler::factory($contextname);
$ADMIN->add('metadatafolder',
new admin_externalpage('metadatacontext_'.$contextname, get_string('metadatatitle', 'metadatacontext_'.$contextname),
new moodle_url('/local/metadata/index.php', ['contextlevel' => $contexthandler->contextlevel]),
['moodle/site:config']));
// Add context settings to specific context settings pages (if possible).
if (get_config('metadatacontext_'.$contextname, 'metadataenabled') == 1) {
$contexthandler->add_settings_to_context_menu($ADMIN);
}
}
$settings = null;
}