i18n corrections to stylesheets regarding alignment;
[squirrelmail.git] / templates / default_advanced / template.php
CommitLineData
93222bea 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 'left_main.tpl',
393a696c 20 'stylesheet_advanced.tpl',
21 'options_order.tpl',
e74c82eb 22 'options_highlight_list.tpl',
23 'options_highlight_addedit.tpl',
6c026667 24 'login.tpl'
93222bea 25 );
26
27/**
28 * Required Javascript files for this template set. If a JS file is listed
29 * here, but not listed in the provided js files below, SquirrelMail will use
30 * the file by the same name in the default template directory.
31 */
32$required_js_files = array (
33 'default.js',
34 'dtree.js'
35 );
36
37/**
38 * Any aditional Javascript files that are needed by this template should be
39 * listed in this array. Javascript files must be in a directory called "js/"
40 * within the template root directory.
41 */
42$provided_js_files = array (
43 'dtree.js'
44 );
3cecf1cd 45
46/**
47 * Additional CSS stylesheets may be provided by template authors.
48 * stylesheet.tpl will always be included in all pages. Any additional
49 * stylesheets provided by this template should be listed here. These
50 * stylesheets will be automatically included on each page. They should be
51 * located in the template root directory.
52 */
53$additional_css_sheets = array (
54 'stylesheet_advanced.tpl'
55 );