Automatic installer.php lang files by installer_builder (20070726)
[moodle-linuxchix.git] / theme / formal_white / config.php
blob5360e9a4a73b1f15a084dc08faab4fc1fc00ee17
1 <?PHP // $Id$
3 ////////////////////////////////////////////////////////////////////////////////
4 /// This file contains a few configuration variables that control
5 /// how Moodle uses this theme.
6 ////////////////////////////////////////////////////////////////////////////////
8 $THEME->sheets = array('fw_layout','fw_color','fw_fonts');
9 ///$THEME->sheets = false;
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 ////////////////////////////////////////////////////////////////////////////////
15 $THEME->standardsheets = array('styles_layout');
16 ///$THEME->standardsheets = true;
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 ////////////////////////////////////////////////////////////////////////////////
30 $THEME->parent = '';
32 /// This variable can be set to the name of a parent theme
33 /// which you want to have included before the current theme.
34 /// This can make it easy to make modifications to another
35 /// theme without having to actually change the files
36 /// If this variable is empty or false then a parent theme
37 /// is not used.
38 ////////////////////////////////////////////////////////////////////////////////
41 $THEME->parentsheets = false;
43 /// This variable can be set to an array containing
44 /// filenames from a chosen *PARENT* theme. If the
45 /// array exists, it will be used to choose the
46 /// files to include in the standard style sheet.
47 /// When false, then no files are used.
48 /// When true or NON-EXISTENT, then ALL standard files are used.
49 /// This parameter can be used, for example, to prevent
50 /// having to override too many classes.
51 /// Note that the trailing .css should not be included
52 /// eg $THEME->parentsheets = array('styles_layout','styles_fonts','styles_color');
53 ////////////////////////////////////////////////////////////////////////////////
56 $THEME->modsheets = true;
58 /// When this is enabled, then this theme will search for
59 /// files named "styles.php" inside all Activity modules and
60 /// include them. This allows modules to provide some basic
61 /// layouts so they work out of the box.
62 /// It is HIGHLY recommended to leave this enabled.
65 $THEME->blocksheets = true;
67 /// When this is enabled, then this theme will search for
68 /// files named "styles.php" inside all Block modules and
69 /// include them. This allows Blocks to provide some basic
70 /// layouts so they work out of the box.
71 /// It is HIGHLY recommended to leave this enabled.
74 $THEME->langsheets = false;
76 /// By setting this to true, then this theme will search for
77 /// a file named "styles.php" inside the current language
78 /// directory. This allows different languages to provide
79 /// different styles.
82 $THEME->resource_mp3player_colors =
83 'bgColour=000000&btnColour=ffffff&btnBorderColour=cccccc&iconColour=000000&'.
84 'iconOverColour=00cc00&trackColour=cccccc&handleColour=ffffff&loaderColour=ffffff&'.
85 'font=Arial&fontColour=3333FF&buffer=10&waitForPlay=no&autoPlay=yes';
87 /// With this you can control the colours of the "big" MP3 player
88 /// that is used for MP3 resources.
91 $THEME->filter_mediaplugin_colors =
92 'bgColour=000000&btnColour=ffffff&btnBorderColour=cccccc&iconColour=000000&'.
93 'iconOverColour=00cc00&trackColour=cccccc&handleColour=ffffff&loaderColour=ffffff&'.
94 'waitForPlay=yes';
96 /// ...And this controls the small embedded player
99 $THEME->custompix = false;
101 /// If true, then this theme must have a "pix"
102 /// subdirectory that contains copies of all
103 /// files from the moodle/pix directory, plus a
104 /// "pix/mod" directory containing all the icons
105 /// for all the activity modules.
106 ////////////////////////////////////////////////////////////////////////////////
110 // These colours are not used anymore, so I've set them to
111 // bright green to help identify where they should be removed
112 // These lines will be deleted soon
114 $THEME->body = "#22FF22"; // Main page color
115 $THEME->cellheading = "#22FF22"; // Standard headings of big tables
116 $THEME->cellheading2 = "#22FF22"; // Highlight headings of tables
117 $THEME->cellcontent = "#22FF22"; // For areas with text
118 $THEME->cellcontent2 = "#22FF22"; // Alternate colour
119 $THEME->borders = "#22FF22"; // Table borders
120 $THEME->highlight = "#22FF22"; // Highlighted text (eg after a search)
121 $THEME->hidden = "#22FF22"; // To color things that are hidden
122 $THEME->autolink = "#22FF22"; // To color auto-generated links (eg glossary)