Incoproated template config file. Templates can now include their own javascript...
[squirrelmail.git] / templates / default / template.php
CommitLineData
6373ad12 1<?php
2/**
3 * Provides some basic configuration options to the template engine
4 *
5 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
6 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
7 * @version $Id$
8 * @package squirrelmail
9 * @subpackage templates
10 */
11
12/**
13 * Each template provided by this set should be listed in this array. If a
14 * template is requested that is not listed here, the default template will be
15 * displayed. The templates listed below must be in the same directory as
16 * this file, e.g. the template root directory.
17 */
18$templates_provided = array (
19 'error_message.tpl',
20 'footer.tpl',
21 'left_main.tpl',
22 'login.tpl',
23 'message_list.tpl',
24 'page_header.tpl',
25 'paginator.tpl',
26 'stylesheet.tpl'
27 );
28
29/**
30 * Required Javascript files for this template set. If a JS file is listed
31 * here, but not listed in the provided js files below, SquirrelMail will use
32 * the file by the same name in the default template directory.
33 */
34$required_js_files = array (
35 'default.js'
36 );
37
38/**
39 * Any aditional Javascript files that are needed by this template should be
40 * listed in this array. Javascript files must be in a directory called "js/"
41 * within the template root directory.
42 */
43$provided_js_files = array (
44 'default.js'
45 );
46?>