Merge commit 'catalyst/MOODLE_19_STABLE' into mdl19-linuxchix
[moodle-linuxchix.git] / theme / custom_corners / config.php
blob37be46b0f7c900ad7663a24b08a41ebc4864d6ac
1 <?php // $Id$
2 ////////////////////////////////////////////////////////////////////////////////
3 /// This file contains a few configuration variables that control
4 /// how Moodle uses this theme.
5 ////////////////////////////////////////////////////////////////////////////////
7 $THEME->sheets = array('user_styles');
9 /// This variable is an array containing the names of all the
10 /// stylesheet files you want included in this theme, and in what order
11 ////////////////////////////////////////////////////////////////////////////////
14 $THEME->standardsheets = array('styles_layout', 'styles_color');
16 /// This variable can be set to an array containing
17 /// filenames from the *STANDARD* theme. If the
18 /// array exists, it will be used to choose the
19 /// files to include in the standard style sheet.
20 /// When false, then no files are used.
21 /// When true or NON-EXISTENT, then ALL standard files are used.
22 /// This parameter can be used, for example, to prevent
23 /// having to override too many classes.
24 /// Note that the trailing .css should not be included
25 /// eg $THEME->standardsheets = array('styles_layout','styles_fonts','styles_color');
26 ////////////////////////////////////////////////////////////////////////////////
29 $THEME->parent = '';
31 /// This variable can be set to the name of a parent theme
32 /// which you want to have included before the current theme.
33 /// This can make it easy to make modifications to another
34 /// theme without having to actually change the files
35 /// If this variable is empty or false then a parent theme
36 /// is not used.
37 ////////////////////////////////////////////////////////////////////////////////
40 $THEME->parentsheets = false;
42 /// This variable can be set to an array containing
43 /// filenames from a chosen *PARENT* theme. If the
44 /// array exists, it will be used to choose the
45 /// files to include in the standard style sheet.
46 /// When false, then no files are used.
47 /// When true or NON-EXISTENT, then ALL standard files are used.
48 /// This parameter can be used, for example, to prevent
49 /// having to override too many classes.
50 /// Note that the trailing .css should not be included
51 /// eg $THEME->parentsheets = array('styles_layout','styles_fonts','styles_color');
52 ////////////////////////////////////////////////////////////////////////////////
55 $THEME->modsheets = true;
57 /// When this is enabled, then this theme will search for
58 /// files named "styles.php" inside all Activity modules and
59 /// include them. This allows modules to provide some basic
60 /// layouts so they work out of the box.
61 /// It is HIGHLY recommended to leave this enabled.
64 $THEME->blocksheets = true;
66 /// When this is enabled, then this theme will search for
67 /// files named "styles.php" inside all Block modules and
68 /// include them. This allows Blocks to provide some basic
69 /// layouts so they work out of the box.
70 /// It is HIGHLY recommended to leave this enabled.
73 $THEME->langsheets = false;
75 /// By setting this to true, then this theme will search for
76 /// a file named "styles.php" inside the current language
77 /// directory. This allows different languages to provide
78 /// different styles.
81 $THEME->block_l_min_width = 180;
82 $THEME->block_l_max_width = 210;
83 $THEME->block_r_min_width = 180;
84 $THEME->block_r_max_width = 210;
86 /// These values define the min and max width of the left and right
87 /// sieblocks in the course pages. If not set or false the standard
88 /// values are taken.
91 // $THEME->layouttable = array('left', 'middle', 'right');
93 /// $THEME->layouttable defines the way the columns are displayed
94 /// on the pages. You can rearange the columns to have the content
95 /// left and the two columns on the right page side.
96 /// $THEME->layouttable = array('middle', 'left', 'right');
99 $THEME->courseformatsheets = true;
101 /// When this is enabled, this theme will search for files
102 /// named "styles.php" inside all course formats and
103 /// include them. This allows course formats to provide
104 /// their own default styles.
107 $THEME->metainclude = true;
109 /// When this is enabled (or not set!) then Moodle will try
110 /// to include a file meta.php from this theme into the
111 /// <head></head> part of the page.
114 $THEME->standardmetainclude = true;
117 /// When this is enabled (or not set!) then Moodle will try
118 /// to include a file meta.php from the standard theme into the
119 /// <head></head> part of the page.
122 $THEME->parentmetainclude = false;
124 /// When this is enabled (or not set!) then Moodle will try
125 /// to include a file meta.php from the parent theme into the
126 /// <head></head> part of the page.
129 $THEME->navmenuwidth = 50;
131 /// You can use this to control the cutoff point for strings
132 /// in the navmenus (list of activities in popup menu etc)
133 /// Default is 50 characters wide.
136 $THEME->makenavmenulist = false;
138 /// By setting this to true, then you will have access to a
139 /// new variable in your header.html and footer.html called
140 /// $navmenulist ... this contains a simple XHTML menu of
141 /// all activities in the current course, mostly useful for
142 /// creating popup navigation menus and so on.
144 // $THEME->layouttable = array('middle', 'left', 'right');
147 $THEME->customcorners = true;
149 /// By setting this to true, Moodle will generate extra divs in
150 /// all pages to enable graphical rich custom corners and borders.
151 /// Please have a look at the README with more details.
154 // $CFG->CSSEdit = true;
156 /// When this is enabled then Moodle will include all CSS files
157 /// seperately instead of writing all CSS code into one single
158 /// CSS file per theme. The single CSS files can then be edited
159 /// and saved with interactive CSS editors like CSSEdit.
162 $THEME->resource_mp3player_colors =
163 'bgColour=000000&btnColour=ffffff&btnBorderColour=cccccc&iconColour=000000&'.
164 'iconOverColour=00cc00&trackColour=cccccc&handleColour=ffffff&loaderColour=ffffff&'.
165 'font=Arial&fontColour=3333FF&buffer=10&waitForPlay=no&autoPlay=yes';
167 /// With this you can control the colours of the "big" MP3 player
168 /// that is used for MP3 resources.
171 $THEME->filter_mediaplugin_colors =
172 'bgColour=000000&btnColour=ffffff&btnBorderColour=cccccc&iconColour=000000&'.
173 'iconOverColour=00cc00&trackColour=cccccc&handleColour=ffffff&loaderColour=ffffff&'.
174 'waitForPlay=yes';
176 /// ...And this controls the small embedded player
179 $THEME->custompix = false;
181 /// If true, then this theme must have a "pix"
182 /// subdirectory that contains copies of all
183 /// files from the moodle/pix directory, plus a
184 /// "pix/mod" directory containing all the icons
185 /// for all the activity modules.
186 ////////////////////////////////////////////////////////////////////////////////