Updating copyrights. Happy New Year.
[squirrelmail.git] / templates / default_advanced / config.php
CommitLineData
f00e222c 1<?php
2
3/**
4 * Provides some basic configuration options to the template engine
5 *
c0d96801 6 * @copyright 1999-2012 The SquirrelMail Project Team
f00e222c 7 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
8 * @version $Id$
9 * @package squirrelmail
10 * @subpackage templates
11 */
12
13
14/**
15 * Indicates what template engine this template set uses.
16 */
17$template_engine = SQ_PHP_TEMPLATE;
18
19
0d56053e 20/**
21 * Indicates what the content type is for this template set.
22 */
23$content_type = 'text/html';
24
25
f00e222c 26/**
39935353 27 * If non-empty, indicates which template set this set is derived from.
28 *
29 * If a template file does not exist in this template set, then the
30 * parent set is searched for the file. If not found there and that
31 * set has a parent itself (the grandparent of this set), the file is
32 * searched for there.... This continues until there are no more parent
33 * template sets, and if the file is still not found, the fall-back
34 * template set (see $templateset_fallback in config/config.php) is the
35 * last placed searched for the file.
36 *
37 */
38$parent_template_set = 'default';
f00e222c 39
40
34904996 41/**
42 * These settings allow this template set to change SquirrelMail's
43 * list of active plugins by adding or removing any of those listed
44 * herein. If the $remove_plugins list contains "*", then ALL plugins
45 * will be disabled, and only those in $add_plugins will be enabled.
46 *
47 */
505e00aa 48$add_plugins = array('preview_pane',);
34904996 49$remove_plugins = array();
50
51