Adding templates for the note in right_main.php, MOTD, and empty folder notification.
[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',
6373ad12 20 'error_message.tpl',
21 'footer.tpl',
22 'left_main.tpl',
23 'login.tpl',
24 'message_list.tpl',
25 'page_header.tpl',
26 'paginator.tpl',
c03e9db0 27 'note.tpl',
28 'motd.tpl',
6373ad12 29 'stylesheet.tpl'
30 );
31
32/**
33 * Required Javascript files for this template set. If a JS file is listed
34 * here, but not listed in the provided js files below, SquirrelMail will use
35 * the file by the same name in the default template directory.
36 */
37$required_js_files = array (
38 'default.js'
39 );
40
41/**
42 * Any aditional Javascript files that are needed by this template should be
43 * listed in this array. Javascript files must be in a directory called "js/"
44 * within the template root directory.
45 */
46$provided_js_files = array (
47 'default.js'
48 );
49?>