2 // This file is part of Moodle - https://moodle.org/
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.
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.
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/>.
18 * Define administration settings on the Location settings page.
22 * @copyright 2006 Martin Dougiamas <martin@moodle.com>
23 * @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 defined('MOODLE_INTERNAL') ||
die();
29 $temp = new admin_settingpage('locationsettings', new lang_string('locationsettings', 'core_admin'));
31 if ($ADMIN->fulltree
) {
32 $temp->add(new admin_setting_servertimezone());
34 $temp->add(new admin_setting_forcetimezone());
36 $temp->add(new admin_settings_country_select('country', new lang_string('country', 'core_admin'),
37 new lang_string('configcountry', 'core_admin'), 0));
39 $temp->add(new admin_setting_configtext('defaultcity', new lang_string('defaultcity', 'core_admin'),
40 new lang_string('defaultcity_help', 'core_admin'), ''));
42 $temp->add(new admin_setting_heading('iplookup', new lang_string('iplookup', 'core_admin'),
43 new lang_string('iplookupinfo', 'core_admin')));
45 $temp->add(new admin_setting_configfile('geoip2file', new lang_string('geoipfile', 'core_admin'),
46 new lang_string('configgeoipfile', 'core_admin', $CFG->dataroot
. '/geoip/'),
47 $CFG->dataroot
. '/geoip/GeoLite2-City.mmdb'));
49 $temp->add(new admin_setting_configtext('googlemapkey3', new lang_string('googlemapkey3', 'core_admin'),
50 new lang_string('googlemapkey3_help', 'core_admin'), '', PARAM_RAW
, 60));
52 $temp->add(new admin_setting_countrycodes('allcountrycodes', new lang_string('allcountrycodes', 'core_admin'),
53 new lang_string('configallcountrycodes', 'core_admin')));
56 $ADMIN->add('location', $temp);