moodle/theme/nonzero/config.php

254 lines
7.7 KiB
PHP
Raw Normal View History

2010-06-22 17:46:35 +00:00
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* Configuration for Moodle's nonzero theme.
*
* DO NOT MODIFY THIS THEME!
* COPY IT FIRST, THEN RENAME THE COPY AND MODIFY IT INSTEAD.
*
* For full information about creating Moodle themes, see:
* http://docs.moodle.org/en/Development:Themes_2.0
*
* @package moodlecore
* @copyright 2008 NodeThirtyThree (http://nodethirtythree.com/)
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
2010-06-22 17:46:35 +00:00
$THEME->name = 'nonzero';
////////////////////////////////////////////////////
// Name of the theme. Most likely the name of
// the directory in which this file resides.
2010-06-22 17:46:35 +00:00
////////////////////////////////////////////////////
$THEME->parents = array(
'canvas',
'base',
2010-06-22 17:46:35 +00:00
);
/////////////////////////////////////////////////////
// Which existing theme(s) in the /theme/ directory
// do you want this theme to extend. A theme can
// extend any number of themes. Rather than
// creating an entirely new theme and copying all
// of the CSS, you can simply create a new theme,
// extend the theme you like and just add the
2010-06-22 17:46:35 +00:00
// changes you want to your theme.
////////////////////////////////////////////////////
$THEME->sheets = array(
'core',
'pagelayout',
2010-06-22 17:46:35 +00:00
);
////////////////////////////////////////////////////
// Name of the stylesheet(s) you've including in
2010-06-22 17:46:35 +00:00
// this theme's /styles/ directory.
////////////////////////////////////////////////////
$THEME->parents_exclude_sheets = array(
'base'=>array(
'pagelayout',
),
'canvas'=>array(
'pagelayout',
),
2010-06-22 17:46:35 +00:00
);
$THEME->enable_dock = true;
////////////////////////////////////////////////////
// Do you want to use the new navigation dock?
////////////////////////////////////////////////////
$THEME->editor_sheets = array('editor');
2010-06-22 17:46:35 +00:00
////////////////////////////////////////////////////
// An array of stylesheets to include within the
2010-06-22 17:46:35 +00:00
// body of the editor.
////////////////////////////////////////////////////
$THEME->layouts = array(
'base' => array(
'file' => 'general.php',
'regions' => array('side-pre', 'side-post'),
'defaultregion' => 'side-post',
),
'standard' => array(
2010-06-22 17:46:35 +00:00
'file' => 'general.php',
'regions' => array('side-pre', 'side-post'),
'defaultregion' => 'side-post',
),
'course' => array(
'file' => 'general.php',
'regions' => array('side-pre', 'side-post'),
'defaultregion' => 'side-post'
),
'coursecategory' => array(
'file' => 'general.php',
'regions' => array('side-pre', 'side-post'),
'defaultregion' => 'side-post',
),
'incourse' => array(
'file' => 'general.php',
'regions' => array('side-pre', 'side-post'),
'defaultregion' => 'side-post',
),
'frontpage' => array(
'file' => 'frontpage.php',
'regions' => array('side-pre', 'side-post'),
'defaultregion' => 'side-post',
),
'admin' => array(
'file' => 'general.php',
'regions' => array('side-pre'),
'defaultregion' => 'side-pre',
),
'mydashboard' => array(
'file' => 'general.php',
'regions' => array('side-pre', 'side-post'),
'defaultregion' => 'side-post',
'options' => array('langmenu'=>true),
),
'mypublic' => array(
'file' => 'general.php',
'regions' => array('side-pre', 'side-post'),
'defaultregion' => 'side-post',
),
'login' => array(
'file' => 'general.php',
'regions' => array(),
'options' => array('langmenu'=>true),
),
'popup' => array(
'file' => 'general.php',
'regions' => array(),
'options' => array('nofooter'=>true, 'noblocks'=>true, 'nonavbar'=>true),
),
'frametop' => array(
'file' => 'general.php',
'regions' => array(),
'options' => array('nofooter'=>true),
),
'maintenance' => array(
'file' => 'general.php',
'regions' => array(),
'options' => array('nofooter'=>true, 'nonavbar'=>true),
),
'embedded' => array(
'theme' => 'canvas',
2010-06-22 17:46:35 +00:00
'file' => 'embedded.php',
'regions' => array(),
'options' => array('nofooter'=>true, 'nonavbar'=>true),
),
// Should display the content and basic headers only.
'print' => array(
'file' => 'general.php',
'regions' => array(),
'options' => array('nofooter'=>true, 'nonavbar'=>false, 'noblocks'=>true),
),
'report' => array(
'file' => 'general.php',
'regions' => array('side-pre'),
'defaultregion' => 'side-pre',
),
2010-06-22 17:46:35 +00:00
);
///////////////////////////////////////////////////////////////
// These are all of the possible layouts in Moodle. The
// simplest way to do this is to keep the theme and file
// variables the same for every layout. Including them
// all in this way allows some flexibility down the road
// if you want to add a different layout template to a
// specific page.
///////////////////////////////////////////////////////////////
$THEME->csspostprocess = 'nonzero_process_css';
2010-06-22 17:46:35 +00:00
////////////////////////////////////////////////////
// Allows the user to provide the name of a function
// that all CSS should be passed to before being
2010-06-22 17:46:35 +00:00
// delivered.
////////////////////////////////////////////////////
// $THEME->javascripts
2010-06-22 17:46:35 +00:00
////////////////////////////////////////////////////
// An array containing the names of JavaScript files
// located in /javascript/ to include in the theme.
2010-06-22 17:46:35 +00:00
// (gets included in the head)
////////////////////////////////////////////////////
// $THEME->javascripts_footer
2010-06-22 17:46:35 +00:00
////////////////////////////////////////////////////
// As above but will be included in the page footer.
////////////////////////////////////////////////////
// $THEME->larrow
2010-06-22 17:46:35 +00:00
////////////////////////////////////////////////////
// Overrides the left arrow image used throughout
2010-06-22 17:46:35 +00:00
// Moodle
////////////////////////////////////////////////////
// $THEME->rarrow
2010-06-22 17:46:35 +00:00
////////////////////////////////////////////////////
// Overrides the right arrow image used throughout Moodle
////////////////////////////////////////////////////
// $THEME->layouts
2010-06-22 17:46:35 +00:00
////////////////////////////////////////////////////
// An array setting the layouts for the theme
////////////////////////////////////////////////////
// $THEME->parents_exclude_javascripts
////////////////////////////////////////////////////
// An array of JavaScript files NOT to inherit from
// the themes parents
////////////////////////////////////////////////////
// $THEME->parents_exclude_sheets
2010-06-22 17:46:35 +00:00
////////////////////////////////////////////////////
// An array of stylesheets not to inherit from the
// themes parents
////////////////////////////////////////////////////
// $THEME->plugins_exclude_sheets
////////////////////////////////////////////////////
// An array of plugin sheets to ignore and not
2010-06-22 17:46:35 +00:00
// include.
////////////////////////////////////////////////////
// $THEME->renderfactory
////////////////////////////////////////////////////
// Sets a custom render factory to use with the
2010-06-22 17:46:35 +00:00
// theme, used when working with custom renderers.
////////////////////////////////////////////////////