Remove HTML from login src and add image template
[squirrelmail.git] / templates / default_advanced / config.php
index 35786877c89d5ea61751b5358fc37c41df79bf24..9e8a3db0a71b131b7bd0f0359cd0d271bc5da07b 100644 (file)
@@ -18,13 +18,28 @@ $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';
+
+
+/**
+  * These settings allow this template set to change SquirrelMail's
+  * list of active plugins by adding or removing any of those listed
+  * herein.  If the $remove_plugins list contains "*", then ALL plugins
+  * will be disabled, and only those in $add_plugins will be enabled.
+  *
+  */
+$add_plugins = array();
+$remove_plugins = array();