-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.php
89 lines (78 loc) · 4 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?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/>.
/**
* Display H5P download settings
*
* @package filter_h5pdownload
* @copyright 2024 Pierre Duverneix - Fondation UNIT
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die;
if ($ADMIN->fulltree) {
$default_target_id = 'block_informations-cc-licence';
// Licence area background color
$name = 'filter_h5pdownload/backgroundcolor';
$title = get_string('settings:backgroundcolor', 'filter_h5pdownload');
$description = get_string('settings:backgroundcolor_desc', 'filter_h5pdownload');
$setting = new admin_setting_configcolourpicker($name, $title, $description, '');
$setting->set_updatedcallback('theme_reset_all_caches');
$settings->add($setting);
// Licence area text color
$name = 'filter_h5pdownload/textcolor';
$title = get_string('settings:textcolor', 'filter_h5pdownload');
$description = get_string('settings:textcolor_desc', 'filter_h5pdownload');
$setting = new admin_setting_configcolourpicker($name, $title, $description, '');
$setting->set_updatedcallback('theme_reset_all_caches');
$settings->add($setting);
// Licence intro
$name = 'filter_h5pdownload/licence_intro';
$title = get_string('settings:licence_intro', 'filter_h5pdownload');
$default = get_string('settings:licence_intro_default', 'filter_h5pdownload');
$setting = new admin_setting_configtext($name, $title, null, $default, PARAM_TEXT);
$settings->add($setting);
// Grab licence from block_informations plugin
$name = 'filter_h5pdownload/licence_target';
$title = get_string('settings:licence_target', 'filter_h5pdownload');
$desc = get_string('settings:licence_target', 'filter_h5pdownload');
$setting = new admin_setting_configtext($name, $title, $desc, $default_target_id, PARAM_TEXT);
$settings->add($setting);
// Default licence name
$name = 'filter_h5pdownload/licence_name';
$title = get_string('settings:licence_name', 'filter_h5pdownload');
$desc = get_string('settings:licence_name_desc', 'filter_h5pdownload');
$default = get_string('settings:licence_name_default', 'filter_h5pdownload');
$setting = new admin_setting_configtext($name, $title, $desc, $default, PARAM_TEXT);
$settings->add($setting);
// Default licence image
$name = 'filter_h5pdownload/licence_image';
$title = get_string('settings:licence_image', 'filter_h5pdownload');
$desc = get_string('settings:licence_image_desc', 'filter_h5pdownload');
$filename = 'licence_image';
$setting = new admin_setting_configstoredfile($name, $title, $desc, $filename, 0, ['accepted_types' => ['image']]);
$settings->add($setting);
// Conditons of reuse
$name = 'filter_h5pdownload/reuse_conditions';
$title = get_string('settings:reuse_conditions', 'filter_h5pdownload');
$default = get_string('settings:reuse_conditions_default', 'filter_h5pdownload');
$setting = new admin_setting_configtext($name, $title, null, $default, PARAM_TEXT);
$settings->add($setting);
// Licence URL
$name = 'filter_h5pdownload/licence_url';
$title = get_string('settings:licence_url', 'filter_h5pdownload');
$default = get_string('settings:licence_url_default', 'filter_h5pdownload');
$setting = new admin_setting_configtext($name, $title, null, $default, PARAM_URL);
$settings->add($setting);
}