MDL-61321 mod_feedback: Return all the items responses
[moodle.git] / theme / bootstrapbase / config.php
blobcb2acaa8b877950caa689ecd92bf3cbf88ba2db0
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.
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/>.
17 /**
18 * Configuration for Moodle's bootstrap theme.
20 * DO NOT MODIFY THIS THEME!
21 * COPY IT FIRST, THEN RENAME THE COPY AND MODIFY IT INSTEAD.
23 * For full information about creating Moodle themes, see:
24 * http://docs.moodle.org/dev/Themes_2.0
26 * @package theme_bootstrapbase
27 * @copyright 2013 Bas Brands. www.sonsbeekmedia.nl
28 * @author Bas Brands
29 * @author David Scotson
30 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
33 $THEME->doctype = 'html5';
34 $THEME->yuicssmodules = array();
35 $THEME->name = 'bootstrapbase';
36 $THEME->parents = array();
37 $THEME->sheets = array('moodle');
38 $THEME->enable_dock = false;
39 $THEME->editor_sheets = array('editor');
41 $THEME->rendererfactory = 'theme_overridden_renderer_factory';
43 $THEME->layouts = array(
44 // Most backwards compatible layout without the blocks - this is the layout used by default.
45 'base' => array(
46 'file' => 'columns1.php',
47 'regions' => array(),
49 // Standard layout with blocks, this is recommended for most pages with general information.
50 'standard' => array(
51 'file' => 'columns3.php',
52 'regions' => array('side-pre', 'side-post'),
53 'defaultregion' => 'side-pre',
55 // Main course page.
56 'course' => array(
57 'file' => 'columns3.php',
58 'regions' => array('side-pre', 'side-post'),
59 'defaultregion' => 'side-pre',
60 'options' => array('langmenu' => true),
62 'coursecategory' => array(
63 'file' => 'columns3.php',
64 'regions' => array('side-pre', 'side-post'),
65 'defaultregion' => 'side-pre',
67 // Part of course, typical for modules - default page layout if $cm specified in require_login().
68 'incourse' => array(
69 'file' => 'columns3.php',
70 'regions' => array('side-pre', 'side-post'),
71 'defaultregion' => 'side-pre',
73 // The site home page.
74 'frontpage' => array(
75 'file' => 'columns3.php',
76 'regions' => array('side-pre', 'side-post'),
77 'defaultregion' => 'side-pre',
78 'options' => array('nonavbar' => true),
80 // Server administration scripts.
81 'admin' => array(
82 'file' => 'columns2.php',
83 'regions' => array('side-pre'),
84 'defaultregion' => 'side-pre',
86 // My dashboard page.
87 'mydashboard' => array(
88 'file' => 'columns3.php',
89 'regions' => array('side-pre', 'side-post'),
90 'defaultregion' => 'side-pre',
91 'options' => array('langmenu' => true),
93 // My public page.
94 'mypublic' => array(
95 'file' => 'columns2.php',
96 'regions' => array('side-pre'),
97 'defaultregion' => 'side-pre',
99 'login' => array(
100 'file' => 'columns1.php',
101 'regions' => array(),
102 'options' => array('langmenu' => true),
105 // Pages that appear in pop-up windows - no navigation, no blocks, no header.
106 'popup' => array(
107 'file' => 'popup.php',
108 'regions' => array(),
109 'options' => array('nofooter' => true, 'nonavbar' => true),
111 // No blocks and minimal footer - used for legacy frame layouts only!
112 'frametop' => array(
113 'file' => 'columns1.php',
114 'regions' => array(),
115 'options' => array('nofooter' => true, 'nocoursefooter' => true),
117 // Embeded pages, like iframe/object embeded in moodleform - it needs as much space as possible.
118 'embedded' => array(
119 'file' => 'embedded.php',
120 'regions' => array()
122 // Used during upgrade and install, and for the 'This site is undergoing maintenance' message.
123 // This must not have any blocks, links, or API calls that would lead to database or cache interaction.
124 // Please be extremely careful if you are modifying this layout.
125 'maintenance' => array(
126 'file' => 'maintenance.php',
127 'regions' => array(),
129 // Should display the content and basic headers only.
130 'print' => array(
131 'file' => 'columns1.php',
132 'regions' => array(),
133 'options' => array('nofooter' => true, 'nonavbar' => false),
135 // The pagelayout used when a redirection is occuring.
136 'redirect' => array(
137 'file' => 'embedded.php',
138 'regions' => array(),
140 // The pagelayout used for reports.
141 'report' => array(
142 'file' => 'columns2.php',
143 'regions' => array('side-pre'),
144 'defaultregion' => 'side-pre',
146 // The pagelayout used for safebrowser and securewindow.
147 'secure' => array(
148 'file' => 'secure.php',
149 'regions' => array('side-pre', 'side-post'),
150 'defaultregion' => 'side-pre'
154 $THEME->javascripts = array(
156 $THEME->javascripts_footer = array(
157 'moodlebootstrap', 'dock'
160 if (core_useragent::is_ie() && !core_useragent::check_ie_version('9.0')) {
161 $THEME->javascripts[] = 'html5shiv';
164 $THEME->hidefromselector = true;