MDL-10984 more language strings
[moodle-pu.git] / theme / orangewhite / config.php
blobd133053741ed3c5fd28848d4219931513d9fdaec
1 <?PHP // $Id$
3 ////////////////////////////////////////////////////////////////////////////////
4 /// This file contains a few configuration variables that control
5 /// how Moodle uses this theme.
6 ////////////////////////////////////////////////////////////////////////////////
9 $THEME->sheets = array('styles_layout', 'styles_fonts', 'styles_color', 'styles_tabs');
11 /// This variable is an array containing the names of all the
12 /// stylesheet files you want included in this theme, and in what order.
13 ////////////////////////////////////////////////////////////////////////////////
16 $THEME->standardsheets = array('styles_layout');
18 /// This variable can be set to an array containing
19 /// filenames from the *STANDARD* theme. If the
20 /// array exists, it will be used to choose the
21 /// files to include in the standard style sheet.
22 /// When false, then no files are used.
23 /// When true or NON-EXISTENT, then ALL standard files are used.
24 /// This parameter can be used, for example, to prevent
25 /// having to override too many classes.
26 /// Note that the trailing .css should not be included
27 /// eg $THEME->standardsheets = array('styles_layout','styles_fonts','styles_color');
28 ////////////////////////////////////////////////////////////////////////////////
31 $THEME->parent = '';
33 /// This variable can be set to the name of a parent theme
34 /// which you want to have included before the current theme.
35 /// This can make it easy to make modifications to another
36 /// theme without having to actually change the files
37 /// If this variable is empty or false then a parent theme
38 /// is not used.
39 ////////////////////////////////////////////////////////////////////////////////
42 $THEME->parentsheets = false;
44 /// This variable can be set to an array containing
45 /// filenames from a chosen *PARENT* theme. If the
46 /// array exists, it will be used to choose the
47 /// files to include in the standard style sheet.
48 /// When false, then no files are used.
49 /// When true or NON-EXISTENT, then ALL standard files are used.
50 /// This parameter can be used, for example, to prevent
51 /// having to override too many classes.
52 /// Note that the trailing .css should not be included
53 /// eg $THEME->parentsheets = array('styles_layout','styles_fonts','styles_color');
54 ////////////////////////////////////////////////////////////////////////////////
57 $THEME->modsheets = true;
59 /// When this is enabled, then this theme will search for
60 /// files named "styles.php" inside all Activity modules and
61 /// include them. This allows modules to provide some basic
62 /// layouts so they work out of the box.
63 /// It is HIGHLY recommended to leave this enabled.
66 $THEME->blocksheets = true;
68 /// When this is enabled, then this theme will search for
69 /// files named "styles.php" inside all Block modules and
70 /// include them. This allows Blocks to provide some basic
71 /// layouts so they work out of the box.
72 /// It is HIGHLY recommended to leave this enabled.
75 $THEME->langsheets = false;
77 /// By setting this to true, then this theme will search for
78 /// a file named "styles.php" inside the current language
79 /// directory. This allows different languages to provide
80 /// different styles.
83 $THEME->navmenuwidth = 50;
85 /// You can use this to control the cutoff point for strings
86 /// in the navmenus (list of activities in popup menu etc)
87 /// Default is 50 characters wide.
90 $THEME->makenavmenulist = false;
92 /// By setting this to true, then you will have access to a
93 /// new variable in your header.html and footer.html called
94 /// $navmenulist ... this contains a simple XHTML menu of
95 /// all activities in the current course, mostly useful for
96 /// creating popup navigation menus and so on.
100 $THEME->resource_mp3player_colors =
101 'bgColour=000000&btnColour=ffffff&btnBorderColour=cccccc&iconColour=000000&'.
102 'iconOverColour=00cc00&trackColour=cccccc&handleColour=ffffff&loaderColour=ffffff&'.
103 'font=Arial&fontColour=3333FF&buffer=10&waitForPlay=no&autoPlay=yes';
105 /// With this you can control the colours of the "big" MP3 player
106 /// that is used for MP3 resources.
109 $THEME->filter_mediaplugin_colors =
110 'bgColour=000000&btnColour=ffffff&btnBorderColour=cccccc&iconColour=000000&'.
111 'iconOverColour=00cc00&trackColour=cccccc&handleColour=ffffff&loaderColour=ffffff&'.
112 'waitForPlay=yes';
114 /// ...And this controls the small embedded player
117 $THEME->custompix = false;
119 /// If true, then this theme must have a "pix"
120 /// subdirectory that contains copies of all
121 /// files from the moodle/pix directory, plus a
122 /// "pix/mod" directory containing all the icons
123 /// for all the activity modules.
124 ////////////////////////////////////////////////////////////////////////////////
128 // These colours are not used anymore, so I've set them to
129 // bright green to help identify where they should be removed
130 // These lines will be deleted soon
132 $THEME->body = "#22FF22"; // Main page color
133 $THEME->cellheading = "#22FF22"; // Standard headings of big tables
134 $THEME->cellheading2 = "#22FF22"; // Highlight headings of tables
135 $THEME->cellcontent = "#22FF22"; // For areas with text
136 $THEME->cellcontent2 = "#22FF22"; // Alternate colour
137 $THEME->borders = "#22FF22"; // Table borders
138 $THEME->highlight = "#22FF22"; // Highlighted text (eg after a search)
139 $THEME->hidden = "#22FF22"; // To color things that are hidden
140 $THEME->autolink = "#22FF22"; // To color auto-generated links (eg glossary)