t12n of compose function. Paul, could you please check the plugin hook implementatio...
[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 (
c03e9db0 19 'empty_folder.tpl',
3cecf1cd 20 'error_box.tpl',
6373ad12 21 'error_message.tpl',
22 'footer.tpl',
23 'left_main.tpl',
24 'login.tpl',
25 'message_list.tpl',
3cecf1cd 26 'motd.tpl',
27 'note.tpl',
2de8b87f 28 'option_groups.tpl',
1c313e0e 29 'options.tpl',
6373ad12 30 'page_header.tpl',
31 'paginator.tpl',
1c313e0e 32 'stylesheet.tpl',
2de8b87f 33 'stylelink.tpl',
1c313e0e 34 'webmail.tpl'
6373ad12 35 );
36
37/**
38 * Required Javascript files for this template set. If a JS file is listed
39 * here, but not listed in the provided js files below, SquirrelMail will use
40 * the file by the same name in the default template directory.
41 */
42$required_js_files = array (
43 'default.js'
44 );
45
46/**
47 * Any aditional Javascript files that are needed by this template should be
48 * listed in this array. Javascript files must be in a directory called "js/"
49 * within the template root directory.
50 */
51$provided_js_files = array (
52 'default.js'
53 );
3cecf1cd 54
55/**
56 * Additional CSS stylesheets may be provided by template authors.
57 * stylesheet.tpl will always be included in all pages. Any additional
58 * stylesheets provided by this template should be listed here. These
59 * stylesheets will be automatically included on each page. They should be
60 * located in the template root directory.
61 */
62$additional_css_sheets = array (
63 );