93222bea |
1 | <?php |
2 | /** |
3 | * Provides some basic configuration options to the template engine |
4 | * |
5 | * @copyright © 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 | 'left_main.tpl', |
3cecf1cd |
20 | 'stylesheet_advanced.tpl' |
93222bea |
21 | ); |
22 | |
23 | /** |
24 | * Required Javascript files for this template set. If a JS file is listed |
25 | * here, but not listed in the provided js files below, SquirrelMail will use |
26 | * the file by the same name in the default template directory. |
27 | */ |
28 | $required_js_files = array ( |
29 | 'default.js', |
30 | 'dtree.js' |
31 | ); |
32 | |
33 | /** |
34 | * Any aditional Javascript files that are needed by this template should be |
35 | * listed in this array. Javascript files must be in a directory called "js/" |
36 | * within the template root directory. |
37 | */ |
38 | $provided_js_files = array ( |
39 | 'dtree.js' |
40 | ); |
3cecf1cd |
41 | |
42 | /** |
43 | * Additional CSS stylesheets may be provided by template authors. |
44 | * stylesheet.tpl will always be included in all pages. Any additional |
45 | * stylesheets provided by this template should be listed here. These |
46 | * stylesheets will be automatically included on each page. They should be |
47 | * located in the template root directory. |
48 | */ |
49 | $additional_css_sheets = array ( |
50 | 'stylesheet_advanced.tpl' |
51 | ); |
93222bea |
52 | ?> |