X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=templates%2Fdefault%2Fconfig.php;h=dc4396879956d5edf081759cee43497e9158378e;hb=79af43f54786fd065b376c2a774fc8c9d454e1cb;hp=a0f23e4ea56d0530894b9e9eb15ddca824ef4912;hpb=740c26f7651ffb948961ba91b3efbf865e5944be;p=squirrelmail.git diff --git a/templates/default/config.php b/templates/default/config.php index a0f23e4e..dc439687 100644 --- a/templates/default/config.php +++ b/templates/default/config.php @@ -3,7 +3,7 @@ /** * Provides some basic configuration options to the template engine * - * @copyright © 1999-2006 The SquirrelMail Project Team + * @copyright © 1999-2007 The SquirrelMail Project Team * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @version $Id$ * @package squirrelmail @@ -18,20 +18,34 @@ $template_engine = SQ_PHP_TEMPLATE; /** - * Required Javascript files for this template set. If a JS file is listed - * here, but not listed in the provided js files below, SquirrelMail will use - * the file by the same name in the default template directory. + * Indicates what the content type is for this template set. */ -$required_js_files = array ( - 'default.js', - ); +$content_type = 'text/html'; + + +/** + * If non-empty, indicates which template set this set is derived from. + * + * If a template file does not exist in this template set, then the + * parent set is searched for the file. If not found there and that + * set has a parent itself (the grandparent of this set), the file is + * searched for there.... This continues until there are no more parent + * template sets, and if the file is still not found, the fall-back + * template set (see $templateset_fallback in config/config.php) is the + * last placed searched for the file. + * + */ +$parent_template_set = ''; + /** - * Alternate stylesheets provided by this template. Format detailed below. - **/ -$alternate_stylesheets = array ( - # CSS File Stlye Name -# 'example.css' => 'My Example Style', - ); + * These settings allow this template set to change SquirrelMail's + * list of active plugins by adding or removing any of those listed + * herein. If the $remove_plugins list contains "*", then ALL plugins + * will be disabled, and only those in $add_plugins will be enabled. + * + */ +$add_plugins = array(); +$remove_plugins = array();