Merge branch 'wip-MDL-25454-master' of git://github.com/marinaglancy/moodle
[moodle.git] / theme / serenity / config.php
blobd1825f2f72d1d528741e898844eba04d77d157b4
1 <?php
3 $THEME->name = 'serenity';
5 ////////////////////////////////////////////////////
6 // Name of the theme. Most likely the name of
7 // the directory in which this file resides.
8 ////////////////////////////////////////////////////
11 $THEME->parents = array('canvas','base');
13 /////////////////////////////////////////////////////
14 // Which existing theme(s) in the /theme/ directory
15 // do you want this theme to extend. A theme can
16 // extend any number of themes. Rather than
17 // creating an entirely new theme and copying all
18 // of the CSS, you can simply create a new theme,
19 // extend the theme you like and just add the
20 // changes you want to your theme.
21 ////////////////////////////////////////////////////
24 $THEME->sheets = array('core');
26 ////////////////////////////////////////////////////
27 // Name of the stylesheet(s) you've including in
28 // this theme's /styles/ directory.
29 ////////////////////////////////////////////////////
32 $THEME->enable_dock = true;
34 ////////////////////////////////////////////////////
35 // Do you want to use the new navigation dock?
36 ////////////////////////////////////////////////////
39 $THEME->editor_sheets = array('editor');
41 ////////////////////////////////////////////////////
42 // An array of stylesheets to include within the
43 // body of the editor.
44 ////////////////////////////////////////////////////
46 // $THEME->csspostprocess
48 ////////////////////////////////////////////////////
49 // Allows the user to provide the name of a function
50 // that all CSS should be passed to before being
51 // delivered.
52 ////////////////////////////////////////////////////
54 // $THEME->javascripts
56 ////////////////////////////////////////////////////
57 // An array containing the names of JavaScript files
58 // located in /javascript/ to include in the theme.
59 // (gets included in the head)
60 ////////////////////////////////////////////////////
62 // $THEME->javascripts_footer
64 ////////////////////////////////////////////////////
65 // As above but will be included in the page footer.
66 ////////////////////////////////////////////////////
68 // $THEME->larrow
70 ////////////////////////////////////////////////////
71 // Overrides the left arrow image used throughout
72 // Moodle
73 ////////////////////////////////////////////////////
75 // $THEME->rarrow
77 ////////////////////////////////////////////////////
78 // Overrides the right arrow image used throughout Moodle
79 ////////////////////////////////////////////////////
81 // $THEME->layouts
83 ////////////////////////////////////////////////////
84 // An array setting the layouts for the theme
85 ////////////////////////////////////////////////////
87 // $THEME->parents_exclude_javascripts
89 ////////////////////////////////////////////////////
90 // An array of JavaScript files NOT to inherit from
91 // the themes parents
92 ////////////////////////////////////////////////////
94 // $THEME->parents_exclude_sheets
96 ////////////////////////////////////////////////////
97 // An array of stylesheets not to inherit from the
98 // themes parents
99 ////////////////////////////////////////////////////
101 // $THEME->plugins_exclude_sheets
103 ////////////////////////////////////////////////////
104 // An array of plugin sheets to ignore and not
105 // include.
106 ////////////////////////////////////////////////////
108 // $THEME->rendererfactory
110 ////////////////////////////////////////////////////
111 // Sets a custom render factory to use with the
112 // theme, used when working with custom renderers.
113 ////////////////////////////////////////////////////