Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
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
 
42
        $temp->add(new admin_setting_heading('iplookup', new lang_string('iplookup', 'core_admin'),
43
            new lang_string('iplookupinfo', 'core_admin')));
44
 
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'));
48
 
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));
51
 
52
        $temp->add(new admin_setting_countrycodes('allcountrycodes', new lang_string('allcountrycodes', 'core_admin'),
53
            new lang_string('configallcountrycodes', 'core_admin')));
54
    }
55
 
56
    $ADMIN->add('location', $temp);
57
}