1 |
efrain |
1 |
<?php
|
|
|
2 |
// This file is part of Moodle - http://moodle.org/
|
|
|
3 |
//
|
|
|
4 |
// Moodle is free software: you can redistribute it and/or modify
|
|
|
5 |
// it under the terms of the GNU General Public License as published by
|
|
|
6 |
// the Free Software Foundation, either version 3 of the License, or
|
|
|
7 |
// (at your option) any later version.
|
|
|
8 |
//
|
|
|
9 |
// Moodle is distributed in the hope that it will be useful,
|
|
|
10 |
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
11 |
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
12 |
// GNU General Public License for more details.
|
|
|
13 |
//
|
|
|
14 |
// You should have received a copy of the GNU General Public License
|
|
|
15 |
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
16 |
|
|
|
17 |
defined('MOODLE_INTERNAL') || die;
|
|
|
18 |
|
|
|
19 |
if ($ADMIN->fulltree) {
|
|
|
20 |
$settings->add(new admin_setting_configtext('block_configurable_reports/dbhost', get_string('dbhost', 'block_configurable_reports'),
|
|
|
21 |
get_string('dbhostinfo', 'block_configurable_reports'), '', PARAM_URL, 30));
|
|
|
22 |
$settings->add(new admin_setting_configtext('block_configurable_reports/dbname', get_string('dbname', 'block_configurable_reports'),
|
|
|
23 |
get_string('dbnameinfo', 'block_configurable_reports'), '', PARAM_RAW, 30));
|
|
|
24 |
$settings->add(new admin_setting_configpasswordunmask('block_configurable_reports/dbuser', get_string('dbuser', 'block_configurable_reports'),
|
|
|
25 |
get_string('dbuserinfo', 'block_configurable_reports'), '', PARAM_RAW, 30));
|
|
|
26 |
$settings->add(new admin_setting_configpasswordunmask('block_configurable_reports/dbpass', get_string('dbpass', 'block_configurable_reports'),
|
|
|
27 |
get_string('dbpassinfo', 'block_configurable_reports'), '', PARAM_RAW, 30));
|
|
|
28 |
|
|
|
29 |
$settings->add(new admin_setting_configtime('block_configurable_reports/cron_hour', 'cron_minute',
|
|
|
30 |
get_string('executeat', 'block_configurable_reports'), get_string('executeatinfo', 'block_configurable_reports'), array('h' => 0, 'm' => 0)));
|
|
|
31 |
|
|
|
32 |
$settings->add(new admin_setting_configcheckbox('block_configurable_reports/sqlsecurity', get_string('sqlsecurity', 'block_configurable_reports'),
|
|
|
33 |
get_string('sqlsecurityinfo', 'block_configurable_reports'), 1));
|
|
|
34 |
|
|
|
35 |
$settings->add(new admin_setting_configtext('block_configurable_reports/crrepository', get_string('crrepository', 'block_configurable_reports'),
|
|
|
36 |
get_string('crrepositoryinfo', 'block_configurable_reports'), 'jleyva/moodle-configurable_reports_repository', PARAM_URL, 40));
|
|
|
37 |
|
|
|
38 |
$settings->add(new admin_setting_configtext('block_configurable_reports/sharedsqlrepository', get_string('sharedsqlrepository', 'block_configurable_reports'),
|
|
|
39 |
get_string('sharedsqlrepositoryinfo', 'block_configurable_reports'), 'jleyva/moodle-custom_sql_report_queries', PARAM_URL, 40));
|
|
|
40 |
|
|
|
41 |
$settings->add(new admin_setting_configcheckbox('block_configurable_reports/sqlsyntaxhighlight', get_string('sqlsyntaxhighlight', 'block_configurable_reports'),
|
|
|
42 |
get_string('sqlsyntaxhighlightinfo', 'block_configurable_reports'), 1));
|
|
|
43 |
|
|
|
44 |
$reporttableoptions = array('html' => 'Simple', 'jquery' => 'jQuery', 'datatables' => 'DataTables JS');
|
|
|
45 |
$settings->add(new admin_setting_configselect('block_configurable_reports/reporttableui', get_string('reporttableui', 'block_configurable_reports'),
|
|
|
46 |
get_string('reporttableuiinfo', 'block_configurable_reports'), 'datatables', $reporttableoptions ));
|
|
|
47 |
|
|
|
48 |
$settings->add(new admin_setting_configtext('block_configurable_reports/reportlimit', get_string('reportlimit', 'block_configurable_reports'),
|
|
|
49 |
get_string('reportlimitinfo', 'block_configurable_reports'), '5000', PARAM_INT, 6));
|
|
|
50 |
}
|