97c08b82bd8ef20223da50b50ea16cecf350b174
[squirrelmail.git] / templates / default / template.php
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 'empty_folder.tpl',
20 'error_box.tpl',
21 'error_message.tpl',
22 'footer.tpl',
23 'left_main.tpl',
24 'login.tpl',
25 'message_list.tpl',
26 'motd.tpl',
27 'note.tpl',
28 'page_header.tpl',
29 'paginator.tpl',
30 'stylesheet.tpl'
31 );
32
33 /**
34 * Required Javascript files for this template set. If a JS file is listed
35 * here, but not listed in the provided js files below, SquirrelMail will use
36 * the file by the same name in the default template directory.
37 */
38 $required_js_files = array (
39 'default.js'
40 );
41
42 /**
43 * Any aditional Javascript files that are needed by this template should be
44 * listed in this array. Javascript files must be in a directory called "js/"
45 * within the template root directory.
46 */
47 $provided_js_files = array (
48 'default.js'
49 );
50
51 /**
52 * Additional CSS stylesheets may be provided by template authors.
53 * stylesheet.tpl will always be included in all pages. Any additional
54 * stylesheets provided by this template should be listed here. These
55 * stylesheets will be automatically included on each page. They should be
56 * located in the template root directory.
57 */
58 $additional_css_sheets = array (
59 );
60 ?>