Changes that follow per the inheritance and associated changes to Template.class.php
[squirrelmail.git] / templates / default / config.php
CommitLineData
f00e222c 1<?php
2
3/**
4 * Provides some basic configuration options to the template engine
5 *
6 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
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
20/**
21 * Required Javascript files for this template set. If a JS file is listed
22 * here, but not listed in the provided js files below, SquirrelMail will use
23 * the file by the same name in the default template directory.
24 */
25$required_js_files = array (
26 'default.js',
27 );
28
740c26f7 29/**
30 * Alternate stylesheets provided by this template. Format detailed below.
31 **/
32$alternate_stylesheets = array (
33 # CSS File Stlye Name
34# 'example.css' => 'My Example Style',
35 );
36
f00e222c 37