-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththemeconfig.php
31 lines (24 loc) · 936 Bytes
/
themeconfig.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
<?php
/**
*
* @package mahara
* @subpackage core
* @author Catalyst IT Ltd
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL version 3 or later
* @copyright For copyright information on Mahara, please see the README file distributed with this software.
*/
$theme = new stdClass();
/* Give your new theme a name here */
$theme->displayname = 'Essential2';
/* Set parent to boolean FALSE to specify the theme has no parent */
$theme->parent = 'raw';
/* If we are using normal CSS, this should be false. If we are using SASS, it should be true. */
$theme->overrideparentcss = false;
/**
* The following themeconfig options are available. If you make new themeconfig
* options please add them here and explain what they do.
*/
/* Allow skins to be used on this theme */
$theme->skins = true;
/* Limit this theme to certain institutions */
// $theme->institutions = array('institution_a', 'institution_b');