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 - 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
/**
18
 * @package   theme_monocolor
19
 * @copyright 2022 - 2023 Marcin Czaja (https://rosea.io)
20
 * @license   Commercial https://themeforest.net/licenses
21
 */
22
 
23
defined('MOODLE_INTERNAL') || die();
24
require_once(__DIR__.'/libs/admin_confightmleditor.php');
25
require_once($CFG->dirroot . '/theme/monocolor/lib.php');
26
 
27
$siteurl = $CFG->wwwroot;
28
$a = new stdClass;
29
$a->siteurl = $siteurl;
30
 
31
if ($ADMIN->fulltree) {
32
    $settings = new theme_monocolor_admin_settingspage_tabs('themesettingmonocolor', get_string('configtitle', 'theme_monocolor'));
33
    require('settings/general.php');
34
    require('settings/seo.php');
35
    require('settings/customization.php');
36
    require('settings/topbar.php');
37
    require('settings/login.php');
38
    require('settings/dashboard.php');
39
    require('settings/mycourses.php');
40
    require('settings/course-page.php');
41
    require('settings/course-page-nav.php');
42
    require('settings/footer.php');
43
    require('settings/alert.php');
44
    require('settings/email.php');
45
    require('settings/advanced.php');
46
    require('settings/scb.php');
47
    require('settings/block0.php');
48
    require('settings/block1.php');
49
    require('settings/block2.php');
50
    require('settings/block3.php');
51
    require('settings/block4.php');
52
    require('settings/block5.php');
53
    require('settings/block6.php');
54
    require('settings/block7.php');
55
    require('settings/block8.php');
56
    require('settings/block9.php');
57
    require('settings/block10.php');
58
    require('settings/block11.php');
59
    require('settings/block12.php');
60
    require('settings/block13.php');
61
    require('settings/block14.php');
62
    require('settings/block15.php');
63
    require('settings/block16.php');
64
    require('settings/block17.php');
65
    require('settings/block18.php');
66
    require('settings/block19.php');
67
    require('settings/block20.php');
68
    require('settings/block21.php');
69
    require('settings/block22.php');
70
}
71