~ubuntu-branches/ubuntu/jaunty/moodle/jaunty

« back to all changes in this revision

Viewing changes to theme/chameleon/config.php

  • Committer: Bazaar Package Importer
  • Author(s): Jordan Mantha, Matt Oquist
  • Date: 2009-02-25 15:16:22 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20090225151622-0ekt1liwhv2obfza
Tags: 1.9.4.dfsg-0ubuntu1
* Merge with Debian git (Closes LP: #322961, #239481, #334611):
  - use Ubuntu's smarty lib directory for linking
  - use internal yui library 
  - add update-notifier support back in

[Matt Oquist]
  * renamed prerm script
  * significantly rewrote postinst and other maintainer scripts to improve
    user experience and package maintainability
    (Closes LP: #225662, #325450, #327843, #303078, #234609)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?PHP // $Id: config.php,v 1.5.6.1 2007/06/25 12:19:56 urs_hunkler Exp $
 
1
<?PHP // $Id: config.php,v 1.7.2.1 2008/02/19 07:52:38 urs_hunkler Exp $
2
2
 
3
3
////////////////////////////////////////////////////////////////////////////////
4
4
/// This file contains a few configuration variables that control 
80
80
/// different styles.
81
81
 
82
82
 
 
83
$THEME->courseformatsheets = true;
 
84
 
 
85
/// When this is enabled, this theme will search for files 
 
86
/// named "styles.php" inside all course formats and 
 
87
/// include them.  This allows course formats to provide 
 
88
/// their own default styles.
 
89
 
 
90
 
 
91
$THEME->metainclude = true;
 
92
 
 
93
/// When this is enabled (or not set!) then Moodle will try 
 
94
/// to include a file meta.php from this theme into the 
 
95
/// <head></head> part of the page.
 
96
 
 
97
 
 
98
$THEME->standardmetainclude = true;
 
99
 
 
100
/// When this is enabled (or not set!) then Moodle will try 
 
101
/// to include a file meta.php from the standard theme into the 
 
102
/// <head></head> part of the page.
 
103
 
 
104
 
 
105
$THEME->parentmetainclude = false;
 
106
 
 
107
/// When this is enabled (or not set!) then Moodle will try 
 
108
/// to include a file meta.php from the parent theme into the 
 
109
/// <head></head> part of the page.
 
110
 
 
111
 
83
112
$THEME->navmenuwidth = 50;
84
113
 
85
114
/// You can use this to control the cutoff point for strings 
96
125
/// creating popup navigation menus and so on.
97
126
 
98
127
 
99
 
$THEME->chameleonenabled = true;
 
128
$THEME->chameleonenabled = false;
100
129
 
101
 
/// By setting this to false it disables editing of the stylsheets
102
 
/// this saves the overhead of loading chameleon on each page 
103
 
/// viewed by a user who can edit pages. it is recommended to 
104
 
/// set this to false once you're satisfied with your theme.
 
130
/// By setting this to true it enables editing of the stylsheets.
 
131
/// It is recommended to set this to false again once you're 
 
132
/// satisfied with your theme.
105
133
 
106
134
$THEME->chameleonteachereditenabled = false;
107
135