Add tempalte config for alternate stylesheets
authorstevetruckstuff <stevetruckstuff@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 29 Sep 2006 22:13:17 +0000 (22:13 +0000)
committerstevetruckstuff <stevetruckstuff@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 29 Sep 2006 22:13:17 +0000 (22:13 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@11777 7612ce4b-ef26-0410-bec9-ea0150e637f0

class/template/Template.class.php
templates/default/config.php

index 509604e6c9180e1fed300d4d9b57bfa19f605d33..5e561a2b8ca91ebcd4b3c3b0ccf8f2810c24842f 100644 (file)
@@ -98,6 +98,15 @@ class Template
       */
     var $required_js_files = array();
 
+    /**
+     * Alternate stylesheets provided by the template.  This is defined in the
+     * template config file so that we can provide pretty names in the display
+     * preferences
+     * 
+     * @var array
+     **/
+    var $alternate_stylesehets = array();
+    
     /**
       * Constructor
       *
@@ -190,6 +199,9 @@ class Template
             require($template_config_file);
             $this->required_js_files = is_array($required_js_files) 
                                      ? $required_js_files : array();
+            $this->alternate_stylesheets = is_array($alternate_stylesheets) ?
+                                           $alternate_stylesheets :
+                                           array();
 
         }
 
@@ -470,7 +482,6 @@ class Template
         $files = list_files($directory, '.css', !$full_path);
 
         // need to leave out "rtl.css" 
-        //
         $return_array = array();
         foreach ($files as $file) {
 
@@ -486,6 +497,22 @@ class Template
 
     }
 
+    /**
+     * Return all alternate stylesheets provided by template.  These
+     * sheets are defined in the template config file so that we cna display
+     * pretty names in the Display Preferences.  The CSS files are located in
+     * $this->template_dir/css/alternatives/
+     * 
+     * @return array alternate style sheets
+     **/
+    function get_alternative_stylesheets () {
+        $a = array();
+        foreach ($this->alternate_stylesheets as $css) {
+            $a[] = strtolower(basename($css));
+        }
+        return $a;
+    }
+    
     /**
       * Generate links to all this template set's standard stylesheets
       *
index d8bc545837f851b628c88c907f870fd70ee3b230..a0f23e4ea56d0530894b9e9eb15ddca824ef4912 100644 (file)
@@ -26,4 +26,12 @@ $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',
+                               );
+