| 1 |
efrain |
1 |
<?php
|
|
|
2 |
// This file is part of Moodle - https://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 |
/**
|
|
|
18 |
* Define administration settings on the Location settings page.
|
|
|
19 |
*
|
|
|
20 |
* @package core
|
|
|
21 |
* @category admin
|
|
|
22 |
* @copyright 2006 Martin Dougiamas <martin@moodle.com>
|
|
|
23 |
* @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
24 |
*/
|
|
|
25 |
|
|
|
26 |
defined('MOODLE_INTERNAL') || die();
|
|
|
27 |
|
|
|
28 |
if ($hassiteconfig) {
|
|
|
29 |
$temp = new admin_settingpage('locationsettings', new lang_string('locationsettings', 'core_admin'));
|
|
|
30 |
|
|
|
31 |
if ($ADMIN->fulltree) {
|
|
|
32 |
$temp->add(new admin_setting_servertimezone());
|
|
|
33 |
|
|
|
34 |
$temp->add(new admin_setting_forcetimezone());
|
|
|
35 |
|
|
|
36 |
$temp->add(new admin_settings_country_select('country', new lang_string('country', 'core_admin'),
|
|
|
37 |
new lang_string('configcountry', 'core_admin'), 0));
|
|
|
38 |
|
|
|
39 |
$temp->add(new admin_setting_configtext('defaultcity', new lang_string('defaultcity', 'core_admin'),
|
|
|
40 |
new lang_string('defaultcity_help', 'core_admin'), ''));
|
|
|
41 |
|
| 1441 |
ariadna |
42 |
$temp->add(new admin_setting_countrycodes('allcountrycodes', new lang_string('allcountrycodes', 'core_admin'),
|
|
|
43 |
new lang_string('configallcountrycodes', 'core_admin')));
|
|
|
44 |
|
| 1 |
efrain |
45 |
$temp->add(new admin_setting_heading('iplookup', new lang_string('iplookup', 'core_admin'),
|
|
|
46 |
new lang_string('iplookupinfo', 'core_admin')));
|
|
|
47 |
|
|
|
48 |
$temp->add(new admin_setting_configfile('geoip2file', new lang_string('geoipfile', 'core_admin'),
|
|
|
49 |
new lang_string('configgeoipfile', 'core_admin', $CFG->dataroot . '/geoip/'),
|
| 1441 |
ariadna |
50 |
$CFG->dataroot . '/geoip/GeoIP-City.mmdb'));
|
| 1 |
efrain |
51 |
|
| 1441 |
ariadna |
52 |
$temp->add(new admin_setting_configselect('geoipdbedition',
|
|
|
53 |
new lang_string('geoipdbedition', 'core_admin'),
|
|
|
54 |
new lang_string('geoipdbedition_desc', 'core_admin'), 'GeoLite2-City',
|
|
|
55 |
['GeoLite2-City' => 'GeoLite2-City', 'GeoIP2-City' => 'GeoIP2-City']));
|
|
|
56 |
|
|
|
57 |
$temp->add(new admin_setting_configtext('geoipmaxmindaccid',
|
|
|
58 |
new lang_string('geoipmaxmindaccid', 'core_admin'),
|
|
|
59 |
new lang_string('geoipmaxmindaccid_desc', 'core_admin'),
|
|
|
60 |
'',
|
|
|
61 |
PARAM_TEXT,
|
|
|
62 |
));
|
|
|
63 |
|
|
|
64 |
$temp->add(new admin_setting_configtext('geoipmaxmindlicensekey',
|
|
|
65 |
new lang_string('geoipmaxmindlicensekey', 'core_admin'),
|
|
|
66 |
new lang_string('geoipmaxmindlicensekey_desc', 'core_admin'),
|
|
|
67 |
'',
|
|
|
68 |
PARAM_TEXT,
|
|
|
69 |
));
|
|
|
70 |
|
| 1 |
efrain |
71 |
$temp->add(new admin_setting_configtext('googlemapkey3', new lang_string('googlemapkey3', 'core_admin'),
|
|
|
72 |
new lang_string('googlemapkey3_help', 'core_admin'), '', PARAM_RAW, 60));
|
|
|
73 |
|
| 1441 |
ariadna |
74 |
$temp->add(new admin_setting_configtext(
|
|
|
75 |
'geopluginapikey',
|
|
|
76 |
new lang_string('geopluginapikey', 'core_admin'),
|
|
|
77 |
new lang_string('geopluginapikey_desc', 'core_admin'),
|
|
|
78 |
'',
|
|
|
79 |
PARAM_TEXT,
|
|
|
80 |
));
|
| 1 |
efrain |
81 |
}
|
|
|
82 |
|
|
|
83 |
$ADMIN->add('location', $temp);
|
|
|
84 |
}
|