-
Notifications
You must be signed in to change notification settings - Fork 161
/
Copy pathsettings.php
executable file
·128 lines (116 loc) · 5.32 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<?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/>.
/**
* Configurable Reports a Moodle block for creating customizable reports
*
* @copyright 2020 Juan Leyva <[email protected]>
* @package block_configurable_reports
* @author Juan leyva <http://www.twitter.com/jleyvadelgado>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die;
if ($ADMIN->fulltree) {
$settings->add(
new admin_setting_configtext(
'block_configurable_reports/dbhost', get_string('dbhost', 'block_configurable_reports'),
get_string('dbhostinfo', 'block_configurable_reports'), '', PARAM_URL, 30
)
);
$settings->add(
new admin_setting_configtext(
'block_configurable_reports/dbname', get_string('dbname', 'block_configurable_reports'),
get_string('dbnameinfo', 'block_configurable_reports'), '', PARAM_RAW, 30
)
);
$settings->add(
new admin_setting_configpasswordunmask(
'block_configurable_reports/dbuser', get_string('dbuser', 'block_configurable_reports'),
get_string('dbuserinfo', 'block_configurable_reports'), '', PARAM_RAW, 30
)
);
$settings->add(
new admin_setting_configpasswordunmask(
'block_configurable_reports/dbpass', get_string('dbpass', 'block_configurable_reports'),
get_string('dbpassinfo', 'block_configurable_reports'), '', PARAM_RAW, 30
)
);
$settings->add(
new admin_setting_configtime(
'block_configurable_reports/cron_hour',
'cron_minute',
get_string('executeat', 'block_configurable_reports'),
get_string('executeatinfo', 'block_configurable_reports'),
['h' => 0, 'm' => 0]
)
);
$settings->add(
new admin_setting_configcheckbox(
'block_configurable_reports/sqlsecurity', get_string('sqlsecurity', 'block_configurable_reports'),
get_string('sqlsecurityinfo', 'block_configurable_reports'), 1
)
);
$settings->add(
new admin_setting_configtext(
'block_configurable_reports/crrepository',
get_string('crrepository', 'block_configurable_reports'),
get_string('crrepositoryinfo', 'block_configurable_reports'),
'jleyva/moodle-configurable_reports_repository',
PARAM_URL,
40
)
);
$settings->add(
new admin_setting_configtext(
'block_configurable_reports/sharedsqlrepository',
get_string('sharedsqlrepository', 'block_configurable_reports'),
get_string('sharedsqlrepositoryinfo', 'block_configurable_reports'),
'jleyva/moodle-custom_sql_report_queries',
PARAM_URL,
40
)
);
$settings->add(
new admin_setting_configcheckbox(
'block_configurable_reports/sqlsyntaxhighlight', get_string('sqlsyntaxhighlight', 'block_configurable_reports'),
get_string('sqlsyntaxhighlightinfo', 'block_configurable_reports'), 1
)
);
$reporttableoptions = ['html' => 'Simple', 'jquery' => 'jQuery', 'datatables' => 'DataTables JS'];
$settings->add(
new admin_setting_configselect(
'block_configurable_reports/reporttableui', get_string('reporttableui', 'block_configurable_reports'),
get_string('reporttableuiinfo', 'block_configurable_reports'), 'datatables', $reporttableoptions
)
);
$settings->add(
new admin_setting_configtext(
'block_configurable_reports/reportlimit', get_string('reportlimit', 'block_configurable_reports'),
get_string('reportlimitinfo', 'block_configurable_reports'), '5000', PARAM_INT, 6
)
);
$settings->add(new admin_setting_configtext('block_configurable_reports/allowedsqlusers', get_string('allowedsqlusers', 'block_configurable_reports'),
get_string('allowedsqlusersinfo', 'block_configurable_reports'), '', PARAM_TEXT));
// csv delimiters used in get_delimiter() of moodle lib/csvlib.class.php
$csvdelimiteroptions= array('cfg'=>'cfg','colon'=>'colon','comma'=>'comma','semicolon'=>'semicolon','tab'=>'tab');
$settings->add(new admin_setting_configselect('block_configurable_reports/csvdelimiter', get_string('csvdelimiter', 'block_configurable_reports'),
get_string('csvdelimiterinfo', 'block_configurable_reports'), 'cfg', $csvdelimiteroptions));
$settings->add(
new admin_setting_configtext(
'block_configurable_reports/allowedsqlusers', get_string('allowedsqlusers', 'block_configurable_reports'),
get_string('allowedsqlusersinfo', 'block_configurable_reports'), '', PARAM_TEXT
)
);
}