-
Notifications
You must be signed in to change notification settings - Fork 5
/
settings.php
72 lines (63 loc) · 2.51 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
60
61
62
63
64
65
66
67
68
69
70
71
<?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/>.
/**
* Settings that allow configuring various tiny Font Color plugin features.
*
* @package tiny_fontcolor
* @copyright 2023 Luca Bösch <[email protected]>
* @copyright 2023 Stephan Robotta <[email protected]>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
use tiny_fontcolor\admin_setting_colorlist;
$ADMIN->add('editortiny', new admin_category('tiny_fontcolor', new lang_string('pluginname', 'tiny_fontcolor')));
$settings = new admin_settingpage('tiny_fontcolor_settings', new lang_string('settings', 'tiny_fontcolor'));
if ($ADMIN->fulltree) {
$setting = new admin_setting_colorlist(
'tiny_fontcolor/textcolors',
new lang_string('textcolors', 'tiny_fontcolor'),
new lang_string('textcolors_desc', 'tiny_fontcolor'),
''
);
$settings->add($setting);
$setting = new admin_setting_colorlist(
'tiny_fontcolor/backgroundcolors',
new lang_string('backgroundcolors', 'tiny_fontcolor'),
new lang_string('backgroundcolors_desc', 'tiny_fontcolor'),
''
);
$settings->add($setting);
$offon = [
0 => get_string('disabled', 'core_adminpresets'),
1 => get_string('enabled', 'core_adminpresets'),
];
$setting = new admin_setting_configselect(
'tiny_fontcolor/textcolorpicker',
new lang_string('textcolorpicker', 'tiny_fontcolor'),
new lang_string('textcolorpicker_desc', 'tiny_fontcolor'),
0,
$offon
);
$settings->add($setting);
$setting = new admin_setting_configselect(
'tiny_fontcolor/backgroundcolorpicker',
new lang_string('backgroundcolorpicker', 'tiny_fontcolor'),
new lang_string('backgroundcolorpicker_desc', 'tiny_fontcolor'),
0,
$offon
);
$settings->add($setting);
}