3 // This file is part of Moodle - http://moodle.org/
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.
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.
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/>.
19 * Configuration for Moodle's boxxie theme.
21 * DO NOT MODIFY THIS THEME!
22 * COPY IT FIRST, THEN RENAME THE COPY AND MODIFY IT INSTEAD.
24 * For full information about creating Moodle themes, see:
25 * http://docs.moodle.org/dev/Themes_2.0
28 * @copyright 2010 Patrick Malley
29 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
32 $THEME->name
= 'boxxie';
34 ////////////////////////////////////////////////////
35 // Name of the theme. Most likely the name of
36 // the directory in which this file resides.
37 ////////////////////////////////////////////////////
40 $THEME->parents
= array('canvas','base');
42 /////////////////////////////////////////////////////
43 // Which existing theme(s) in the /theme/ directory
44 // do you want this theme to extend. A theme can
45 // extend any number of themes. Rather than
46 // creating an entirely new theme and copying all
47 // of the CSS, you can simply create a new theme,
48 // extend the theme you like and just add the
49 // changes you want to your theme.
50 ////////////////////////////////////////////////////
53 $THEME->sheets
= array('core');
55 ////////////////////////////////////////////////////
56 // Name of the stylesheet(s) you've including in
57 // this theme's /styles/ directory.
58 ////////////////////////////////////////////////////
61 $THEME->enable_dock
= false;
63 ////////////////////////////////////////////////////
64 // Do you want to use the new navigation dock?
65 ////////////////////////////////////////////////////
68 $THEME->layouts
= array(
70 'file' => 'general.php',
71 'regions' => array('side-pre', 'side-post'),
72 'defaultregion' => 'side-pre',
75 'file' => 'general.php',
76 'regions' => array('side-pre', 'side-post'),
77 'defaultregion' => 'side-pre',
80 'file' => 'general.php',
81 'regions' => array('side-pre', 'side-post'),
82 'defaultregion' => 'side-pre'
84 'coursecategory' => array(
85 'file' => 'general.php',
86 'regions' => array('side-pre', 'side-post'),
87 'defaultregion' => 'side-pre',
90 'file' => 'general.php',
91 'regions' => array('side-pre', 'side-post'),
92 'defaultregion' => 'side-pre',
95 'file' => 'frontpage.php',
96 'regions' => array('side-pre', 'side-post'),
97 'defaultregion' => 'side-pre',
100 'file' => 'general.php',
101 'regions' => array('side-pre'),
102 'defaultregion' => 'side-pre',
104 'mydashboard' => array(
105 'file' => 'general.php',
106 'regions' => array('side-pre', 'side-post'),
107 'defaultregion' => 'side-pre',
108 'options' => array('langmenu'=>true),
111 'file' => 'general.php',
112 'regions' => array('side-pre', 'side-post'),
113 'defaultregion' => 'side-pre',
116 'file' => 'general.php',
117 'regions' => array(),
118 'options' => array('langmenu'=>true),
121 'file' => 'general.php',
122 'regions' => array(),
123 'options' => array('nofooter'=>true),
126 'file' => 'general.php',
127 'regions' => array(),
128 'options' => array('nofooter'=>true),
130 'maintenance' => array(
132 'file' => 'general.php',
133 'regions' => array(),
134 'options' => array('nofooter'=>true, 'nonavbar'=>true, 'noblocks'=>false, 'nocustommenu'=>true),
137 'file' => 'embedded.php',
138 'regions' => array(),
139 'options' => array('nofooter'=>true, 'nonavbar'=>true, 'noblocks'=>false, 'nocustommenu'=>true),
141 // Should display the content and basic headers only.
143 'file' => 'general.php',
144 'regions' => array(),
145 'options' => array('nofooter'=>true, 'nonavbar'=>true, 'noblocks'=>false, 'nocustommenu'=>true),
150 ///////////////////////////////////////////////////////////////
151 // These are all of the possible layouts in Moodle. The
152 // simplest way to do this is to keep the theme and file
153 // variables the same for every layout. Including them
154 // all in this way allows some flexibility down the road
155 // if you want to add a different layout template to a
157 ///////////////////////////////////////////////////////////////
159 // $THEME->csspostprocess
161 ////////////////////////////////////////////////////
162 // Allows the user to provide the name of a function
163 // that all CSS should be passed to before being
165 ////////////////////////////////////////////////////
167 // $THEME->javascripts
169 ////////////////////////////////////////////////////
170 // An array containing the names of JavaScript files
171 // located in /javascript/ to include in the theme.
172 // (gets included in the head)
173 ////////////////////////////////////////////////////
175 // $THEME->javascripts_footer
177 ////////////////////////////////////////////////////
178 // As above but will be included in the page footer.
179 ////////////////////////////////////////////////////
183 ////////////////////////////////////////////////////
184 // Overrides the left arrow image used throughout
186 ////////////////////////////////////////////////////
190 ////////////////////////////////////////////////////
191 // Overrides the right arrow image used throughout Moodle
192 ////////////////////////////////////////////////////
196 ////////////////////////////////////////////////////
197 // An array setting the layouts for the theme
198 ////////////////////////////////////////////////////
200 // $THEME->parents_exclude_javascripts
202 ////////////////////////////////////////////////////
203 // An array of JavaScript files NOT to inherit from
204 // the themes parents
205 ////////////////////////////////////////////////////
207 // $THEME->parents_exclude_sheets
209 ////////////////////////////////////////////////////
210 // An array of stylesheets not to inherit from the
212 ////////////////////////////////////////////////////
214 // $THEME->plugins_exclude_sheets
216 ////////////////////////////////////////////////////
217 // An array of plugin sheets to ignore and not
219 ////////////////////////////////////////////////////
221 // $THEME->rendererfactory
223 ////////////////////////////////////////////////////
224 // Sets a custom render factory to use with the
225 // theme, used when working with custom renderers.
226 ////////////////////////////////////////////////////