-
Notifications
You must be signed in to change notification settings - Fork 4
/
settings.php
42 lines (37 loc) · 1.75 KB
/
settings.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
/**
* This file is part of the wet-boew-moodle project.
*
* Copyright © 2016 onwards by TNG Consulting Inc.
*
* The WETBOEW theme for Moodle is provided freely as open source software, can be redistributed
* and/or modified it under the terms of the GNU General Public License version 3.0 or later.
*
* This software is distributed in the hope that it will be useful. However, there is no warranty,
* implied or otherwise, of merchantability or fitness for any purpose.
*
* If for any reason a copy of the GNU General Public License was not included with this project,
* you can view it online by going to: https://www.gnu.org/licenses/gpl-3.0.en.html</p>
**/
/**
* @package theme_wetboew
* @copyright 2016 TNG Consulting Inc. unless otherwise noted.
* @author Michael Milette <www.tngconsulting.ca>
* @license WET-BOEW-Moodle: http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later.
* @license Moodle: http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later.
* @license WET-BOEW: https://github.com/wet-boew/wet-boew/blob/master/License-eng.txt MIT License.
* @license Government of Canada graphics: Government of Canada http://www.tbs-sct.gc.ca/fip-pcim/index-eng.asp .
* @license 3rd party software included with WET-BOEW: Held by the respective copyright holders as noted in those files.
**/
defined('MOODLE_INTERNAL') || die;
// Fix date format - enable leading zeros for day.
$CFG->nofixday = true;
$settings = null;
require_once(__DIR__.'/locallib.php');
if (is_siteadmin()) {
// WET-BOEW theme settings page.
global $PAGE;
$ADMIN->add('themes', new admin_category('theme_wetboew', 'WETBOEW'));
// include 'settings/branding.php';
// include 'settings/css.php';
}