Update for template inheritance; alternate stylesheets dynamically loaded from templa...
authorpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 2 Oct 2006 09:44:15 +0000 (09:44 +0000)
committerpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 2 Oct 2006 09:44:15 +0000 (09:44 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@11793 7612ce4b-ef26-0410-bec9-ea0150e637f0

templates/default/config.php
templates/default_advanced/config.php

index a0f23e4ea56d0530894b9e9eb15ddca824ef4912..2384aa4f65dd275393b8846d967be7a8de096717 100644 (file)
@@ -18,20 +18,17 @@ $template_engine = SQ_PHP_TEMPLATE;
 
 
 /**
- * Required Javascript files for this template set.  If a JS file is listed
- * here, but not listed in the provided js files below, SquirrelMail will use
- * the file by the same name in the default template directory.
- */
-$required_js_files = array  (
-                                'default.js',
-                            );
-
-/**
- * Alternate stylesheets provided by this template.  Format detailed below.
- **/
-$alternate_stylesheets = array (
-                                    # CSS File         Stlye Name
-#                                   'example.css'   => 'My Example Style',
-                               );
+  * If non-empty, indicates which template set this set is derived from.
+  *
+  * If a template file does not exist in this template set, then the
+  * parent set is searched for the file.  If not found there and that
+  * set has a parent itself (the grandparent of this set), the file is
+  * searched for there....  This continues until there are no more parent
+  * template sets, and if the file is still not found, the fall-back
+  * template set (see $templateset_fallback in config/config.php) is the 
+  * last placed searched for the file.
+  *
+  */
+$parent_template_set = '';
 
 
index 35786877c89d5ea61751b5358fc37c41df79bf24..e2108d7f72080475139926c42cf5ebe950c7fc8d 100644 (file)
@@ -18,13 +18,17 @@ $template_engine = SQ_PHP_TEMPLATE;
 
 
 /**
- * Required Javascript files for this template set.  If a JS file is listed
- * here, but not listed in the provided js files below, SquirrelMail will use
- * the file by the same name in the default template directory.
- */
-$required_js_files = array  (
-                                'default.js',
-                                'dtree.js',
-                            );
+  * If non-empty, indicates which template set this set is derived from.  
+  *
+  * If a template file does not exist in this template set, then the
+  * parent set is searched for the file.  If not found there and that
+  * set has a parent itself (the grandparent of this set), the file is
+  * searched for there....  This continues until there are no more parent
+  * template sets, and if the file is still not found, the fall-back
+  * template set (see $templateset_fallback in config/config.php) is the 
+  * last placed searched for the file.
+  *
+  */
+$parent_template_set = 'default';