1 | <?php |
---|
2 | |
---|
3 | // This file is part of Moodle - http://moodle.org/ |
---|
4 | // |
---|
5 | // Moodle is free software: you can redistribute it and/or modify |
---|
6 | // it under the terms of the GNU General Public License as published by |
---|
7 | // the Free Software Foundation, either version 3 of the License, or |
---|
8 | // (at your option) any later version. |
---|
9 | // |
---|
10 | // Moodle is distributed in the hope that it will be useful, |
---|
11 | // but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
12 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
13 | // GNU General Public License for more details. |
---|
14 | // |
---|
15 | // You should have received a copy of the GNU General Public License |
---|
16 | // along with Moodle. If not, see <http://www.gnu.org/licenses/>. |
---|
17 | |
---|
18 | /** |
---|
19 | * Configuration for Moodle's standard theme. |
---|
20 | * |
---|
21 | * This theme is the default theme within Moodle 2.0, it builds upon the base theme |
---|
22 | * adding only CSS to create the simple look and feel Moodlers have come to recognise. |
---|
23 | * |
---|
24 | * For full information about creating Moodle themes, see: |
---|
25 | * http://docs.moodle.org/en/Development:Themes_2.0 |
---|
26 | * |
---|
27 | * @package moodlecore |
---|
28 | * @copyright 2010 Sam Hemelryk |
---|
29 | * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later |
---|
30 | */ |
---|
31 | |
---|
32 | $THEME->name = 'bteducation2_0'; |
---|
33 | $THEME->parents = array('base'); |
---|
34 | $THEME->sheets = array( |
---|
35 | 'core', /** Must come first**/ |
---|
36 | 'admin', |
---|
37 | 'blocks', |
---|
38 | 'calendar', |
---|
39 | 'course', |
---|
40 | 'user', |
---|
41 | 'dock', |
---|
42 | 'grade', |
---|
43 | 'message', |
---|
44 | 'modules', |
---|
45 | 'question', |
---|
46 | 'css3' /** Sets up CSS 3 + browser specific styles **/ |
---|
47 | ); |
---|
48 | $THEME->enable_dock = true; |
---|