]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/SugarTheme/SugarTheme.php
Release 6.5.5
[Github/sugarcrm.git] / include / SugarTheme / SugarTheme.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM Community Edition is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2012 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38
39 /*********************************************************************************
40
41  * Description:  Contains a variety of utility functions used to display UI
42  * components such as form headers and footers.  Intended to be modified on a per
43  * theme basis.
44  ********************************************************************************/
45
46 if(!defined('JSMIN_AS_LIB'))
47     define('JSMIN_AS_LIB', true);
48
49 require_once("include/SugarTheme/cssmin.php");
50 require_once("jssource/jsmin.php");
51 require_once('include/utils/sugar_file_utils.php');
52
53 /**
54  * Class that provides tools for working with a theme.
55  * @api
56  */
57 class SugarTheme
58 {
59     /**
60      * Theme name
61      *
62      * @var string
63      */
64     protected $name;
65
66     /**
67      * Theme description
68      *
69      * @var string
70      */
71     protected $description;
72
73     /**
74      * Defines which parent files to not include
75      *
76      * @var string
77      */
78     protected $ignoreParentFiles = array();
79
80     /**
81      * Defines which parent files to not include
82      *
83      * @var string
84      */
85     public $directionality = 'ltr';
86     /**
87      * Theme directory name
88      *
89      * @var string
90      */
91     protected $dirName;
92
93     /**
94      * Parent theme name
95      *
96      * @var string
97      */
98     protected $parentTheme;
99
100     /**
101      * Colors sets provided by the theme
102      *
103      * @deprecated only here for BC during upgrades
104      * @var array
105      */
106     protected $colors = array();
107
108     /**
109      * Font sets provided by the theme
110      *
111      * @deprecated only here for BC during upgrades
112      * @var array
113      */
114     protected $fonts  = array();
115
116     /**
117      * Maximum sugar version this theme is for; defaults to 5.5.1 as all the themes without this
118      * parameter as assumed to work thru 5.5.1
119      *
120      * @var int
121      */
122     protected $version = '5.5.1';
123
124     /**
125      * Colors used in bar charts
126      *
127      * @var array
128      */
129     protected $barChartColors = array(
130         "docBorder"             => "0xffffff",
131         "docBg1"                => "0xffffff",
132         "docBg2"                => "0xffffff",
133         "xText"                 => "0x33485c",
134         "yText"                 => "0x33485c",
135         "title"                 => "0x333333",
136         "misc"                  => "0x999999",
137         "altBorder"             => "0xffffff",
138         "altBg"                 => "0xffffff",
139         "altText"               => "0x666666",
140         "graphBorder"           => "0xcccccc",
141         "graphBg1"              => "0xf6f6f6",
142         "graphBg2"              => "0xf6f6f6",
143         "graphLines"            => "0xcccccc",
144         "graphText"             => "0x333333",
145         "graphTextShadow"       => "0xf9f9f9",
146         "barBorder"             => "0xeeeeee",
147         "barBorderHilite"       => "0x333333",
148         "legendBorder"          => "0xffffff",
149         "legendBg1"             => "0xffffff",
150         "legendBg2"             => "0xffffff",
151         "legendText"            => "0x444444",
152         "legendColorKeyBorder"  => "0x777777",
153         "scrollBar"             => "0xcccccc",
154         "scrollBarBorder"       => "0xeeeeee",
155         "scrollBarTrack"        => "0xeeeeee",
156         "scrollBarTrackBorder"  => "0xcccccc",
157         );
158
159     /**
160      * Colors used in pie charts
161      *
162      * @var array
163      */
164     protected $pieChartColors = array(
165         "docBorder"             => "0xffffff",
166         "docBg1"                => "0xffffff",
167         "docBg2"                => "0xffffff",
168         "title"                 => "0x333333",
169         "subtitle"              => "0x666666",
170         "misc"                  => "0x999999",
171         "altBorder"             => "0xffffff",
172         "altBg"                 => "0xffffff",
173         "altText"               => "0x666666",
174         "graphText"             => "0x33485c",
175         "graphTextShadow"       => "0xf9f9f9",
176         "pieBorder"             => "0xffffff",
177         "pieBorderHilite"       => "0x333333",
178         "legendBorder"          => "0xffffff",
179         "legendBg1"             => "0xffffff",
180         "legendBg2"             => "0xffffff",
181         "legendText"            => "0x444444",
182         "legendColorKeyBorder"  => "0x777777",
183         "scrollBar"             => "0xdfdfdf",
184         "scrollBarBorder"       => "0xfafafa",
185         "scrollBarTrack"        => "0xeeeeee",
186         "scrollBarTrackBorder"  => "0xcccccc",
187         );
188
189     /**
190      * Does this theme support group tabs
191      *
192      * @var bool
193      */
194     public $group_tabs;
195
196
197     /**
198      * Cache built of all css files locations
199      *
200      * @var array
201      */
202     private $_cssCache = array();
203
204     /**
205      * Cache built of all image files locations
206      *
207      * @var array
208      */
209     private $_imageCache = array();
210
211     /**
212      * Cache built of all javascript files locations
213      *
214      * @var array
215      */
216     private $_jsCache = array();
217
218     /**
219      * Cache built of all template files locations
220      *
221      * @var array
222      */
223     private $_templateCache = array();
224
225         /**
226          * Cache built of sprite meta data
227          *
228          * @var array
229          */
230         private $_spriteCache = array();
231
232     /**
233      * Size of the caches after the are initialized in the constructor
234      *
235      * @var array
236      */
237     private $_initialCacheSize = array(
238         'cssCache'      => 0,
239         'imageCache'    => 0,
240         'jsCache'       => 0,
241         'templateCache' => 0,
242                 'spriteCache'   => 0,
243         );
244
245     /**
246      * Controls whether or not to clear the cache on destroy; defaults to false
247      */
248     private $_clearCacheOnDestroy = false;
249
250     private $imageExtensions = array(
251             'gif',
252             'png',
253             'jpg',
254             'tif',
255             'bmp',
256     );
257
258     /**
259      * Constructor
260      *
261      * Sets the theme properties from the defaults passed to it, and loads the file path cache from an external cache
262      *
263      * @param  $defaults string defaults for the current theme
264      */
265     public function __construct(
266         $defaults
267         )
268     {
269         // apply parent theme's properties first
270         if ( isset($defaults['parentTheme']) ) {
271             $themedef = array();
272             include("themes/{$defaults['parentTheme']}/themedef.php");
273             foreach ( $themedef as $key => $value ) {
274                 if ( property_exists(__CLASS__,$key) ) {
275                     // For all arrays ( except colors and fonts ) you can just specify the items
276                     // to change instead of all of the values
277                     if ( is_array($this->$key) && !in_array($key,array('colors','fonts')) )
278                         $this->$key = array_merge($this->$key,$value);
279                     else
280                         $this->$key = $value;
281                 }
282             }
283         }
284         foreach ( $defaults as $key => $value ) {
285             if ( property_exists(__CLASS__,$key) ) {
286                 // For all arrays ( except colors and fonts ) you can just specify the items
287                 // to change instead of all of the values
288                 if ( is_array($this->$key) && !in_array($key,array('colors','fonts')) )
289                     $this->$key = array_merge($this->$key,$value);
290                 else
291                     $this->$key = $value;
292             }
293         }
294         if ( !inDeveloperMode() ) {
295             if ( sugar_is_file($cachedfile = sugar_cached($this->getFilePath().'/pathCache.php'))) {
296                 $caches = unserialize(file_get_contents($cachedfile));
297                 if ( isset($caches['jsCache']) )
298                     $this->_jsCache       = $caches['jsCache'];
299                 if ( isset($caches['cssCache']) )
300                     $this->_cssCache      = $caches['cssCache'];
301                 if ( isset($caches['imageCache']) )
302                     $this->_imageCache    = $caches['imageCache'];
303                 if ( isset($caches['templateCache']) )
304                     $this->_templateCache = $caches['templateCache'];
305             }
306             $cachedfile = sugar_cached($this->getFilePath().'/spriteCache.php');
307                         if(!empty($GLOBALS['sugar_config']['use_sprites']) && sugar_is_file($cachedfile)) {
308                                 $this->_spriteCache = unserialize(sugar_file_get_contents($cachedfile));
309                         }
310         }
311         $this->_initialCacheSize = array(
312             'jsCache'       => count($this->_jsCache),
313             'cssCache'      => count($this->_cssCache),
314             'imageCache'    => count($this->_imageCache),
315             'templateCache' => count($this->_templateCache),
316                         'spriteCache'   => count($this->_spriteCache),
317             );
318     }
319
320     /**
321          * This is needed to prevent unserialize vulnerability
322      */
323     public function __wakeup()
324     {
325         // clean all properties
326         foreach(get_object_vars($this) as $k => $v) {
327             $this->$k = null;
328         }
329         throw new Exception("Not a serializable object");
330     }
331
332     /**
333      * Destructor
334      * Here we'll write out the internal file path caches to an external cache of some sort.
335      */
336     public function __destruct()
337     {
338         // Bug 28309 - Set the current directory to one which we expect it to be (i.e. the root directory of the install
339         set_include_path(realpath(dirname(__FILE__) . '/../..') . PATH_SEPARATOR . get_include_path());
340         chdir(dirname(__FILE__) . '/../..'); // destruct can be called late, and chdir could change
341         $cachedir = sugar_cached($this->getFilePath());
342         sugar_mkdir($cachedir, 0775, true);
343         // clear out the cache on destroy if we are asked to
344         if ( $this->_clearCacheOnDestroy ) {
345
346             if (is_file("$cachedir/pathCache.php"))
347                 unlink("$cachedir/pathCache.php");
348                         if (is_file("$cachedir/spriteCache.php"))
349                                 unlink("$cachedir/spriteCache.php");
350
351         }
352         elseif ( !inDeveloperMode() ) {
353             // only update the caches if they have been changed in this request
354             if ( count($this->_jsCache) != $this->_initialCacheSize['jsCache']
355                     || count($this->_cssCache) != $this->_initialCacheSize['cssCache']
356                     || count($this->_imageCache) != $this->_initialCacheSize['imageCache']
357                     || count($this->_templateCache) != $this->_initialCacheSize['templateCache']
358                 ) {
359                 sugar_file_put_contents(
360                     "$cachedir/pathCache.php",
361                     serialize(
362                         array(
363                             'jsCache'       => $this->_jsCache,
364                             'cssCache'      => $this->_cssCache,
365                             'imageCache'    => $this->_imageCache,
366                             'templateCache' => $this->_templateCache,
367                             )
368                         )
369                     );
370
371             }
372                         if ( count($this->_spriteCache) != $this->_initialCacheSize['spriteCache']) {
373                                 sugar_file_put_contents(
374                                         "$cachedir/spriteCache.php",
375                                         serialize($this->_spriteCache)
376                                 );
377                         }
378         }
379     }
380
381     /**
382      * Specifies what is returned when the object is cast to a string, in this case it will be the
383      * theme directory name.
384      *
385      * @return string theme directory name
386      */
387     public function __toString()
388     {
389         return $this->dirName;
390     }
391
392     /**
393      * Generic public accessor method for all the properties of the theme ( which are kept protected )
394      *
395      * @return string
396      */
397     public function __get(
398         $key
399         )
400     {
401         if ( isset($this->$key) )
402             return $this->$key;
403     }
404
405     public function __isset($key){
406         return isset($this->$key);
407
408     }
409
410     public function clearJSCache()
411     {
412         $this->_jsCache = array();
413     }
414
415     /**
416      * Clears out the caches used for this themes
417      */
418     public function clearCache()
419     {
420         $this->_clearCacheOnDestroy = true;
421     }
422
423     /**
424      * Return array of all valid fields that can be specified in the themedef.php file
425      *
426      * @return array
427      */
428     public static function getThemeDefFields()
429     {
430         return array(
431             'name',
432             'description',
433             'directionality',
434             'dirName',
435             'parentTheme',
436             'version',
437             'colors',
438             'fonts',
439             'barChartColors',
440             'pieChartColors',
441             'group_tabs',
442             'ignoreParentFiles',
443             );
444     }
445
446     /**
447      * Returns the file path of the current theme
448      *
449      * @return string
450      */
451     public function getFilePath()
452     {
453         return 'themes/'.$this->dirName;
454     }
455
456     /**
457      * Returns the image path of the current theme
458      *
459      * @return string
460      */
461     public function getImagePath()
462     {
463         return $this->getFilePath().'/images';
464     }
465
466     /**
467      * Returns the css path of the current theme
468      *
469      * @return string
470      */
471     public function getCSSPath()
472     {
473         return $this->getFilePath().'/css';
474     }
475
476     /**
477      * Returns the javascript path of the current theme
478      *
479      * @return string
480      */
481     public function getJSPath()
482     {
483         return $this->getFilePath().'/js';
484     }
485
486     /**
487      * Returns the tpl path of the current theme
488      *
489      * @return string
490      */
491     public function getTemplatePath()
492     {
493         return $this->getFilePath().'/tpls';
494     }
495
496     /**
497      * Returns the file path of the theme defaults
498      *
499      * @return string
500      */
501     public final function getDefaultFilePath()
502     {
503         return 'themes/default';
504     }
505
506     /**
507      * Returns the image path of the theme defaults
508      *
509      * @return string
510      */
511     public final function getDefaultImagePath()
512     {
513         return $this->getDefaultFilePath().'/images';
514     }
515
516     /**
517      * Returns the css path of the theme defaults
518      *
519      * @return string
520      */
521     public final function getDefaultCSSPath()
522     {
523         return $this->getDefaultFilePath().'/css';
524     }
525
526     /**
527      * Returns the template path of the theme defaults
528      *
529      * @return string
530      */
531     public final function getDefaultTemplatePath()
532     {
533         return $this->getDefaultFilePath().'/tpls';
534     }
535
536     /**
537      * Returns the javascript path of the theme defaults
538      *
539      * @return string
540      */
541     public final function getDefaultJSPath()
542     {
543         return $this->getDefaultFilePath().'/js';
544     }
545
546     /**
547      * Returns CSS for the current theme.
548      *
549      * @param  $color string optional, specifies the css color file to use if the theme supports it; defaults to cookie value or theme default
550      * @param  $font  string optional, specifies the css font file to use if the theme supports it; defaults to cookie value or theme default
551      * @return string HTML code
552      */
553     public function getCSS(
554         $color = null,
555         $font = null
556         )
557     {
558         // include style.css file
559         $html = '<link rel="stylesheet" type="text/css" href="'.$this->getCSSURL('yui.css').'" />';
560         $html .= '<link rel="stylesheet" type="text/css" href="include/javascript/jquery/themes/base/jquery.ui.all.css" />';
561         $html .= '<link rel="stylesheet" type="text/css" href="'.$this->getCSSURL('deprecated.css').'" />';
562         $html .= '<link rel="stylesheet" type="text/css" href="'.$this->getCSSURL('style.css').'" />';
563
564                 // sprites
565                 if(!empty($GLOBALS['sugar_config']['use_sprites']) && $GLOBALS['sugar_config']['use_sprites']) {
566
567                         // system wide sprites
568                         if(file_exists("cache/sprites/default/sprites.css"))
569                                 $html .= '<link rel="stylesheet" type="text/css" href="'.getJSPath('cache/sprites/default/sprites.css').'" />';
570
571                         // theme specific sprites
572                         if(file_exists("cache/sprites/{$this->dirName}/sprites.css"))
573                                 $html .= '<link rel="stylesheet" type="text/css" href="'.getJSPath('cache/sprites/'.$this->dirName.'/sprites.css').'" />';
574
575                         // parent sprites
576                         if($this->parentTheme && $parent = SugarThemeRegistry::get($this->parentTheme)) {
577                                 if(file_exists("cache/sprites/{$parent->dirName}/sprites.css"))
578                                         $html .= '<link rel="stylesheet" type="text/css" href="'.getJSPath('cache/sprites/'.$parent->dirName.'/sprites.css').'" />';
579                         }
580
581                         // repeatable sprites
582                         if(file_exists("cache/sprites/Repeatable/sprites.css"))
583                                 $html .= '<link rel="stylesheet" type="text/css" href="'.getJSPath('cache/sprites/Repeatable/sprites.css').'" />';
584                 }
585
586         // for BC during upgrade
587         if ( !empty($this->colors) ) {
588             if ( isset($_SESSION['authenticated_user_theme_color']) && in_array($_SESSION['authenticated_user_theme_color'], $this->colors))
589                 $color = $_SESSION['authenticated_user_theme_color'];
590             else
591                 $color = $this->colors[0];
592             $html .= '<link rel="stylesheet" type="text/css" href="'.$this->getCSSURL('colors.'.$color.'.css').'" id="current_color_style" />';
593         }
594
595         if ( !empty($this->fonts) ) {
596             if ( isset($_SESSION['authenticated_user_theme_font']) && in_array($_SESSION['authenticated_user_theme_font'], $this->fonts))
597                 $font = $_SESSION['authenticated_user_theme_font'];
598             else
599                 $font = $this->fonts[0];
600             $html .= '<link rel="stylesheet" type="text/css" href="'.$this->getCSSURL('fonts.'.$font.'.css').'" id="current_font_style" />';
601         }
602
603         return $html;
604     }
605
606     /**
607      * Returns javascript for the current theme
608      *
609      * @return string HTML code
610      */
611     public function getJS()
612     {
613         $styleJS = $this->getJSURL('style.js');
614         return <<<EOHTML
615 <script type="text/javascript" src="$styleJS"></script>
616 EOHTML;
617     }
618
619     /**
620      * Returns the path for the tpl file in the current theme. If not found in the current theme, will revert
621      * to looking in the base theme.
622      *
623      * @param  string $templateName tpl file name
624      * @return string path of tpl file to include
625      */
626     public function getTemplate(
627         $templateName
628         )
629     {
630         if ( isset($this->_templateCache[$templateName]) )
631             return $this->_templateCache[$templateName];
632
633         $templatePath = '';
634         if (sugar_is_file('custom/'.$this->getTemplatePath().'/'.$templateName))
635             $templatePath = 'custom/'.$this->getTemplatePath().'/'.$templateName;
636         elseif (sugar_is_file($this->getTemplatePath().'/'.$templateName))
637             $templatePath = $this->getTemplatePath().'/'.$templateName;
638         elseif (isset($this->parentTheme)
639                 && SugarThemeRegistry::get($this->parentTheme) instanceOf SugarTheme
640                 && ($filename = SugarThemeRegistry::get($this->parentTheme)->getTemplate($templateName)) != '')
641             $templatePath = $filename;
642         elseif (sugar_is_file('custom/'.$this->getDefaultTemplatePath().'/'.$templateName))
643             $templatePath = 'custom/'.$this->getDefaultTemplatePath().'/'.$templateName;
644         elseif (sugar_is_file($this->getDefaultTemplatePath().'/'.$templateName))
645             $templatePath = $this->getDefaultTemplatePath().'/'.$templateName;
646         else {
647             $GLOBALS['log']->warn("Template $templateName not found");
648             return false;
649         }
650
651         $this->_imageCache[$templateName] = $templatePath;
652
653         return $templatePath;
654     }
655
656     /**
657      * Returns an image tag for the given image.
658      *
659      * @param  string $image image name
660      * @param  string $other_attributes optional, other attributes to add to the image tag, not cached
661          * @param  string $width optional, defaults to the actual image's width
662          * @param  string $height optional, defaults to the actual image's height
663          * @param  string $ext optional, image extension (TODO can we deprecate this one ?)
664      * @param  string $alt optional, only used when image contains something useful, i.e. "Sally's profile pic"
665      * @return string HTML image tag or sprite
666      */
667     public function getImage(
668         $imageName,
669         $other_attributes = '',
670                 $width = null,
671                 $height = null,
672                 $ext = null,
673         $alt = ''
674     )
675     {
676
677         static $cached_results = array();
678
679                 // trap deprecated use of image extension
680                 if(is_null($ext)) {
681                         $imageNameExp = explode('.',$imageName);
682                         if(count($imageNameExp) == 1)
683                                 $imageName .= '.gif';
684                 } else {
685                         $imageName .= $ext;
686                 }
687
688                 // trap alt attributes in other_attributes
689                 if(preg_match('/alt=["\']([^\'"]+)["\']/i', $other_attributes))
690                         $GLOBALS['log']->debug("Sprites: alt attribute detected for $imageName");
691                 // sprite handler, makes use of own caching mechanism
692                 if(!empty($GLOBALS['sugar_config']['use_sprites']) && $GLOBALS['sugar_config']['use_sprites']) {
693                         // get sprite metadata
694                         if($sp = $this->getSpriteMeta($imageName)) {
695                                 // requested size should match
696                                 if( (!is_null($width) && $sp['width'] == $width) || (is_null($width)) &&
697                                         (!is_null($height) && $sp['height'] == $height) || (is_null($height)) )
698                                 {
699                     $other_attributes .= ' data-orig="'.$imageName.'"';
700
701                      if($sprite = $this->getSprite($sp['class'], $other_attributes, $alt))
702                      {
703                          return $sprite;
704                      }
705                                 }
706                         }
707                 }
708
709                 // img caching
710                 if(empty($cached_results[$imageName])) {
711                         $imageURL = $this->getImageURL($imageName,false);
712                         if ( empty($imageURL) )
713                                 return false;
714                 $cached_results[$imageName] = '<img src="'.getJSPath($imageURL).'" ';
715                 }
716
717                 $attr_width = (is_null($width)) ? "" : "width=\"$width\"";
718                 $attr_height = (is_null($height)) ? "" : "height=\"$height\"";
719                 return $cached_results[$imageName] . " $attr_width $attr_height $other_attributes alt=\"$alt\" />";
720     }
721
722         /**
723          * Returns sprite meta data
724          *
725          * @param  string $imageName Image filename including extension
726          * @return array  Sprite meta data
727          */
728         public function getSpriteMeta($imageName) {
729
730                 // return from cache
731             if(isset($this->_spriteCache[$imageName]))
732                         return $this->_spriteCache[$imageName];
733
734                         // sprite keys are base on imageURL
735                 $imageURL = $this->getImageURL($imageName,false);
736                 if(empty($imageURL)) {
737                         $this->_spriteCache[$imageName] = false;
738                         return false;
739                 }
740
741                 // load meta data, includes default images
742                 require_once("include/SugarTheme/SugarSprites.php");
743                 $meta = SugarSprites::getInstance();
744                 // add current theme dir
745                 $meta->loadSpriteMeta($this->dirName);
746                 // add parent theme dir
747                 if($this->parentTheme && $parent = SugarThemeRegistry::get($this->parentTheme)) {
748                         $meta->loadSpriteMeta($parent->dirName);
749                 }
750
751                 // add to cache
752                 if(isset($meta->sprites[$imageURL])) {
753                         $this->_spriteCache[$imageName] = $meta->sprites[$imageURL];
754                         // add imageURL to cache
755                         //$this->_spriteCache[$imageName]['imageURL'] = $imageURL;
756                 } else {
757                         $this->_spriteCache[$imageName] = false;
758                         $GLOBALS['log']->debug("Sprites: miss for $imageURL");
759                 }
760                 return $this->_spriteCache[$imageName];
761         }
762
763         /**
764          * Returns sprite HTML span tag
765          *
766          * @param  string class The md5 id used in the CSS sprites class
767          * @param  string attr  optional, list of additional html attributes
768          * @param  string title optional, the title (equivalent to alt on img)
769          * @return string HTML span tag
770          */
771         public function getSprite($class, $attr, $title) {
772
773                 // handle multiple class tags
774                 $class_regex = '/class=["\']([^\'"]+)["\']/i';
775                 preg_match($class_regex, $attr, $match);
776                 if(isset($match[1])) {
777                         $attr = preg_replace($class_regex, 'class="spr_'.$class.' ${1}"', $attr);
778
779                 // single class
780                 } else {
781                         $attr .= ' class="spr_'.$class.'"';
782                 }
783
784                 if($title)
785                         $attr .= ' title="'.$title.'"';
786
787                 // use </span> instead of /> to prevent weird UI results
788                 $GLOBALS['log']->debug("Sprites: generated sprite -> $attr");
789                 return "<span {$attr}></span>";
790         }
791
792         /**
793          * Returns a link HTML tag with or without an embedded image
794          */
795     public function getLink(
796                 $url,
797                 $title,
798                 $other_attributes = '',
799         $img_name = '',
800         $img_other_attributes = '',
801                 $img_width = null,
802                 $img_height = null,
803                 $img_alt = '',
804                 $img_placement = 'imageonly'
805     )
806     {
807
808                 if($img_name) {
809                         $img = $this->getImage($img_name, $img_other_attributes, $img_width, $img_height, null, $img_alt);
810                         if($img == false) {
811                                 $GLOBALS['log']->debug('Sprites: unknown image getLink');
812                                 $img = 'unknown';
813                         }
814                         switch($img_placement) {
815                                 case 'left':    $inner_html = $img."<span class='title'>".$title."</span>"; break;
816                                 case 'right':   $inner_html = "<span class='title'>".$title."</span>".$img; break;
817                                 default:                $inner_html = $img; break;
818                         }
819                 } else {
820                         $inner_html = $title;
821                 }
822
823                 return '<a href="'.$url.'" title="'.$title.'" '.$other_attributes.'>'.$inner_html.'</a>';
824
825         }
826
827     /**
828      * Returns the URL for an image in the current theme. If not found in the current theme, will revert
829      * to looking in the base theme.
830      * @param  string $imageName image file name
831      * @param  bool   $addJSPath call getJSPath() with the results to add some unique image tracking support
832      * @return string path to image
833      */
834     public function getImageURL(
835         $imageName,
836         $addJSPath = true
837         ){
838         if ( isset($this->_imageCache[$imageName]) ) {
839             if ( $addJSPath )
840                 return getJSPath($this->_imageCache[$imageName]);
841             else
842                 return $this->_imageCache[$imageName];
843         }
844         $imagePath = '';
845         if (($filename = $this->_getImageFileName('custom/'.$this->getImagePath().'/'.$imageName)) != '')
846             $imagePath = $filename;
847         elseif (($filename = $this->_getImageFileName($this->getImagePath().'/'.$imageName)) != '')
848             $imagePath = $filename;
849         elseif (isset($this->parentTheme)
850                 && SugarThemeRegistry::get($this->parentTheme) instanceOf SugarTheme
851                 && ($filename = SugarThemeRegistry::get($this->parentTheme)->getImageURL($imageName,false)) != '')
852             $imagePath = $filename;
853         elseif (($filename = $this->_getImageFileName('custom/'.$this->getDefaultImagePath().'/'.$imageName)) != '')
854             $imagePath = $filename;
855         elseif (($filename = $this->_getImageFileName($this->getDefaultImagePath().'/'.$imageName)) != '')
856             $imagePath = $filename;
857                 elseif (($filename = $this->_getImageFileName('include/images/'.$imageName)) != '')
858                         $imagePath = $filename;
859         else {
860             $GLOBALS['log']->warn("Image $imageName not found");
861             return false;
862         }
863
864         $this->_imageCache[$imageName] = $imagePath;
865
866         if ( $addJSPath )
867             return getJSPath($imagePath);
868
869         return $imagePath;
870     }
871
872     /**
873      * Checks for an image using all of the accepted image extensions
874      *
875      * @param  string $imageName image file name
876      * @return string path to image
877      */
878     protected function _getImageFileName(
879         $imageName
880         )
881     {
882         // return now if the extension matches that of which we are looking for
883         if ( sugar_is_file($imageName) )
884             return $imageName;
885         $pathParts = pathinfo($imageName);
886         foreach ( $this->imageExtensions as $extension )
887             if ( isset($pathParts['extension']) )
888                 if ( ( $extension != $pathParts['extension'] )
889                         && sugar_is_file($pathParts['dirname'].'/'.$pathParts['filename'].'.'.$extension) )
890                     return $pathParts['dirname'].'/'.$pathParts['filename'].'.'.$extension;
891
892         return '';
893     }
894
895     /**
896      * Returns the URL for the css file in the current theme. If not found in the current theme, will revert
897      * to looking in the base theme.
898      *
899      * @param  string $cssFileName css file name
900      * @param  bool   $returnURL if true, returns URL with unique image mark, otherwise returns path to the file
901      * @return string path of css file to include
902      */
903     public function getCSSURL($cssFileName, $returnURL = true)
904     {
905         if ( isset($this->_cssCache[$cssFileName]) && sugar_is_file(sugar_cached($this->_cssCache[$cssFileName])) ) {
906             if ( $returnURL )
907                 return getJSPath("cache/".$this->_cssCache[$cssFileName]);
908             else
909                 return sugar_cached($this->_cssCache[$cssFileName]);
910         }
911
912         $cssFileContents = '';
913         $defaultFileName = $this->getDefaultCSSPath().'/'.$cssFileName;
914         $fullFileName = $this->getCSSPath().'/'.$cssFileName;
915         if (isset($this->parentTheme)
916                 && SugarThemeRegistry::get($this->parentTheme) instanceOf SugarTheme
917                 && ($filename = SugarThemeRegistry::get($this->parentTheme)->getCSSURL($cssFileName,false)) != '')
918             $cssFileContents .= file_get_contents($filename);
919         else {
920             if (sugar_is_file($defaultFileName))
921                 $cssFileContents .= file_get_contents($defaultFileName);
922             if (sugar_is_file('custom/'.$defaultFileName))
923                 $cssFileContents .= file_get_contents('custom/'.$defaultFileName);
924         }
925         if (sugar_is_file($fullFileName)) {
926             $cssFileContents .= file_get_contents($fullFileName);
927         }
928         if (sugar_is_file('custom/'.$fullFileName)) {
929             $cssFileContents .= file_get_contents('custom/'.$fullFileName);
930         }
931         if (empty($cssFileContents)) {
932             $GLOBALS['log']->warn("CSS File $cssFileName not found");
933             return false;
934         }
935
936         // fix any image references that may be defined in css files
937         $cssFileContents = str_ireplace("entryPoint=getImage&",
938             "entryPoint=getImage&themeName={$this->dirName}&",
939             $cssFileContents);
940
941         // create the cached file location
942         $cssFilePath = create_cache_directory($fullFileName);
943
944         // if this is the style.css file, prepend the base.css and calendar-win2k-cold-1.css
945         // files before the theme styles
946         if ( $cssFileName == 'style.css' && !isset($this->parentTheme) ) {
947             if ( inDeveloperMode() )
948                 $cssFileContents = file_get_contents('include/javascript/yui/build/base/base.css') . $cssFileContents;
949             else
950                 $cssFileContents = file_get_contents('include/javascript/yui/build/base/base-min.css') . $cssFileContents;
951         }
952
953         // minify the css
954         if ( !inDeveloperMode() && !sugar_is_file($cssFilePath) ) {
955             $cssFileContents = cssmin::minify($cssFileContents);
956         }
957
958         // now write the css to cache
959         sugar_file_put_contents($cssFilePath,$cssFileContents);
960
961         $this->_cssCache[$cssFileName] = $fullFileName;
962
963         if ( $returnURL )
964             return getJSPath("cache/".$fullFileName);
965
966         return sugar_cached($fullFileName);
967     }
968
969     /**
970      * Returns the URL for an image in the current theme. If not found in the current theme, will revert
971      * to looking in the base theme.
972      *
973      * @param  string $jsFileName js file name
974      * @param  bool   $returnURL if true, returns URL with unique image mark, otherwise returns path to the file
975      * @return string path to js file
976      */
977     public function getJSURL($jsFileName, $returnURL = true)
978     {
979         if ( isset($this->_jsCache[$jsFileName]) && sugar_is_file(sugar_cached($this->_jsCache[$jsFileName])) ) {
980             if ( $returnURL )
981                 return getJSPath("cache/".$this->_jsCache[$jsFileName]);
982             else
983                 return sugar_cached($this->_jsCache[$jsFileName]);
984         }
985
986         $jsFileContents = '';
987         $fullFileName = $this->getJSPath().'/'.$jsFileName;
988         $defaultFileName = $this->getDefaultJSPath().'/'.$jsFileName;
989         if (isset($this->parentTheme)
990                 && SugarThemeRegistry::get($this->parentTheme) instanceOf SugarTheme
991                 && ($filename = SugarThemeRegistry::get($this->parentTheme)->getJSURL($jsFileName,false)) != ''    && !in_array($jsFileName,$this->ignoreParentFiles)) {
992            $jsFileContents .= file_get_contents($filename);
993        } else {
994             if (sugar_is_file($defaultFileName))
995                 $jsFileContents .= file_get_contents($defaultFileName);
996             if (sugar_is_file('custom/'.$defaultFileName))
997                 $jsFileContents .= file_get_contents('custom/'.$defaultFileName);
998         }
999         if (sugar_is_file($fullFileName))
1000             $jsFileContents .= file_get_contents($fullFileName);
1001         if (sugar_is_file('custom/'.$fullFileName))
1002             $jsFileContents .= file_get_contents('custom/'.$fullFileName);
1003         if (empty($jsFileContents)) {
1004             $GLOBALS['log']->warn("Javascript File $jsFileName not found");
1005             return false;
1006         }
1007
1008         // create the cached file location
1009         $jsFilePath = create_cache_directory($fullFileName);
1010
1011         // minify the js
1012         if ( !inDeveloperMode()&& !sugar_is_file(str_replace('.js','-min.js',$jsFilePath)) ) {
1013             $jsFileContents = SugarMin::minify($jsFileContents);
1014             $jsFilePath = str_replace('.js','-min.js',$jsFilePath);
1015             $fullFileName = str_replace('.js','-min.js',$fullFileName);
1016         }
1017
1018         // now write the js to cache
1019         sugar_file_put_contents($jsFilePath,$jsFileContents);
1020
1021         $this->_jsCache[$jsFileName] = $fullFileName;
1022
1023         if ( $returnURL )
1024             return getJSPath("cache/".$fullFileName);
1025
1026         return sugar_cached($fullFileName);
1027     }
1028
1029     /**
1030      * Returns an array of all of the images available for the current theme
1031      *
1032      * @return array
1033      */
1034     public function getAllImages()
1035     {
1036         // first, lets get all the paths of where to look
1037         $pathsToSearch = array($this->getImagePath());
1038         $theme = $this;
1039         while (isset($theme->parentTheme) && SugarThemeRegistry::get($theme->parentTheme) instanceOf SugarTheme ) {
1040             $theme = SugarThemeRegistry::get($theme->parentTheme);
1041             $pathsToSearch[] = $theme->getImagePath();
1042         }
1043         $pathsToSearch[] = $this->getDefaultImagePath();
1044
1045         // now build the array
1046         $imageArray = array();
1047         foreach ( $pathsToSearch as $path )
1048         {
1049             if (!sugar_is_dir($path)) $path = "custom/$path";
1050             if (sugar_is_dir($path) && is_readable($path) && $dir = opendir($path)) {
1051                 while (($file = readdir($dir)) !== false) {
1052                     if ($file == ".."
1053                             || $file == "."
1054                             || $file == ".svn"
1055                             || $file == "CVS"
1056                             || $file == "Attic"
1057                             )
1058                         continue;
1059                     if ( !isset($imageArray[$file]) )
1060                         $imageArray[$file] = $this->getImageURL($file,false);
1061                 }
1062                 closedir($dir);
1063             }
1064         }
1065
1066         ksort($imageArray);
1067
1068         return $imageArray;
1069     }
1070
1071 }
1072
1073 /**
1074  * Registry for all the current classes in the system
1075  */
1076 class SugarThemeRegistry
1077 {
1078     /**
1079      * Array of all themes and thier object
1080      *
1081      * @var array
1082      */
1083     private static $_themes = array();
1084
1085     /**
1086      * Name of the current theme; corresponds to an index key in SugarThemeRegistry::$_themes
1087      *
1088      * @var string
1089      */
1090     private static $_currentTheme;
1091
1092     /**
1093      * Disable the constructor since this will be a singleton
1094      */
1095     private function __construct() {}
1096
1097     /**
1098      * Adds a new theme to the registry
1099      *
1100      * @param $themedef array
1101      */
1102     public static function add(
1103         array $themedef
1104         )
1105     {
1106         // make sure the we know the sugar version
1107         if ( !isset($GLOBALS['sugar_version']) ) {
1108             include('sugar_version.php');
1109             $GLOBALS['sugar_version'] = $sugar_version;
1110         }
1111
1112         // Assume theme is designed for 5.5.x if not specified otherwise
1113         if ( !isset($themedef['version']) )
1114             $themedef['version']['regex_matches'] = array('5\.5\.*');
1115
1116         // Check to see if theme is valid for this version of Sugar; return false if not
1117         $version_ok = false;
1118         if( isset($themedef['version']['exact_matches']) ){
1119             $matches_empty = false;
1120             foreach( $themedef['version']['exact_matches'] as $match ){
1121                 if( $match == $GLOBALS['sugar_version'] ){
1122                     $version_ok = true;
1123                 }
1124             }
1125         }
1126         if( !$version_ok && isset($themedef['version']['regex_matches']) ){
1127             $matches_empty = false;
1128             foreach( $themedef['version']['regex_matches'] as $match ){
1129                 if( preg_match( "/$match/", $GLOBALS['sugar_version'] ) ){
1130                     $version_ok = true;
1131                 }
1132             }
1133         }
1134         if ( !$version_ok )
1135             return false;
1136
1137         $theme = new SugarTheme($themedef);
1138         self::$_themes[$theme->dirName] = $theme;
1139     }
1140
1141     /**
1142      * Removes a new theme from the registry
1143      *
1144      * @param $themeName string
1145      */
1146     public static function remove(
1147         $themeName
1148         )
1149     {
1150         if ( self::exists($themeName) )
1151             unset(self::$_themes[$themeName]);
1152     }
1153
1154     /**
1155      * Returns a theme object in the registry specified by the given $themeName
1156      *
1157      * @param $themeName string
1158      */
1159     public static function get(
1160         $themeName
1161         )
1162     {
1163         if ( isset(self::$_themes[$themeName]) )
1164             return self::$_themes[$themeName];
1165     }
1166
1167     /**
1168      * Returns the current theme object
1169      *
1170      * @return SugarTheme object
1171      */
1172     public static function current()
1173     {
1174         if ( !isset(self::$_currentTheme) )
1175             self::buildRegistry();
1176
1177         return self::$_themes[self::$_currentTheme];
1178     }
1179
1180     /**
1181      * Returns the default theme object
1182      *
1183      * @return SugarTheme object
1184      */
1185     public static function getDefault()
1186     {
1187         if ( !isset(self::$_currentTheme) )
1188             self::buildRegistry();
1189
1190         if ( isset($GLOBALS['sugar_config']['default_theme']) && self::exists($GLOBALS['sugar_config']['default_theme']) ) {
1191             return self::get($GLOBALS['sugar_config']['default_theme']);
1192         }
1193
1194         return self::get(array_pop(array_keys(self::availableThemes())));
1195     }
1196
1197     /**
1198      * Returns true if a theme object specified by the given $themeName exists in the registry
1199      *
1200      * @param  $themeName string
1201      * @return bool
1202      */
1203     public static function exists(
1204         $themeName
1205         )
1206     {
1207         return (self::get($themeName) !== null);
1208     }
1209
1210     /**
1211      * Sets the given $themeName to be the current theme
1212      *
1213      * @param  $themeName string
1214      */
1215     public static function set(
1216         $themeName
1217         )
1218     {
1219         if ( !self::exists($themeName) )
1220             return false;
1221
1222         self::$_currentTheme = $themeName;
1223
1224         // set some of the expected globals
1225         $GLOBALS['barChartColors'] = self::current()->barChartColors;
1226         $GLOBALS['pieChartColors'] = self::current()->pieChartColors;
1227         return true;
1228     }
1229
1230     /**
1231      * Builds the theme registry
1232      */
1233     public static function buildRegistry()
1234     {
1235         self::$_themes = array();
1236         $dirs = array("themes/","custom/themes/");
1237
1238         // check for a default themedef file
1239         $themedefDefault = array();
1240         if ( sugar_is_file("custom/themes/default/themedef.php") ) {
1241             $themedef = array();
1242             require("custom/themes/default/themedef.php");
1243             $themedefDefault = $themedef;
1244         }
1245
1246         foreach ($dirs as $dirPath ) {
1247             if (sugar_is_dir('./'.$dirPath) && is_readable('./'.$dirPath) && $dir = opendir('./'.$dirPath)) {
1248                 while (($file = readdir($dir)) !== false) {
1249                     if ($file == ".."
1250                             || $file == "."
1251                             || $file == ".svn"
1252                             || $file == "CVS"
1253                             || $file == "Attic"
1254                             || $file == "default"
1255                             || !sugar_is_dir("./$dirPath".$file)
1256                             || !sugar_is_file("./{$dirPath}{$file}/themedef.php")
1257                             )
1258                         continue;
1259                     $themedef = array();
1260                     require("./{$dirPath}{$file}/themedef.php");
1261                     $themedef = array_merge($themedef,$themedefDefault);
1262                     $themedef['dirName'] = $file;
1263                     // check for theme already existing in the registry
1264                     // if so, then it will override the current one
1265                     if ( self::exists($themedef['dirName']) ) {
1266                         $existingTheme = self::get($themedef['dirName']);
1267                         foreach ( SugarTheme::getThemeDefFields() as $field )
1268                             if ( !isset($themedef[$field]) )
1269                                 $themedef[$field] = $existingTheme->$field;
1270                         self::remove($themedef['dirName']);
1271                     }
1272                     if ( isset($themedef['name']) ) {
1273                         self::add($themedef);
1274                     }
1275                 }
1276                 closedir($dir);
1277             }
1278         }
1279         // default to setting the default theme as the current theme
1280         if ( !isset($GLOBALS['sugar_config']['default_theme']) || !self::set($GLOBALS['sugar_config']['default_theme']) ) {
1281             if ( count(self::availableThemes()) == 0 )
1282             {
1283                 sugar_die('No valid themes are found on this instance');
1284             } else {
1285                 self::set(self::getDefaultThemeKey());
1286             }
1287         }
1288     }
1289
1290
1291     /**
1292      * getDefaultThemeKey
1293      *
1294      * This function returns the default theme key.  It takes into account string casing issues that may arise
1295      * from upgrades.  It attempts to look for the Sugar theme and if not found, defaults to return the name of the last theme
1296      * in the array of available themes loaded.
1297      *
1298      * @return $defaultThemeKey String value of the default theme key to use
1299      */
1300     private static function getDefaultThemeKey()
1301     {
1302         $availableThemes = self::availableThemes();
1303         foreach($availableThemes as $key=>$theme)
1304         {
1305             if(strtolower($key) == 'sugar')
1306             {
1307                 return $key;
1308             }
1309         }
1310
1311         return array_pop(array_keys($availableThemes));
1312     }
1313
1314
1315     /**
1316      * Returns an array of available themes. Designed to be absorbed into get_select_options_with_id()
1317      *
1318      * @return array
1319      */
1320     public static function availableThemes()
1321     {
1322         $themelist = array();
1323         $disabledThemes = array();
1324         if ( isset($GLOBALS['sugar_config']['disabled_themes']) )
1325             $disabledThemes = explode(',',$GLOBALS['sugar_config']['disabled_themes']);
1326
1327         foreach ( self::$_themes as $themename => $themeobject ) {
1328             if ( in_array($themename,$disabledThemes) )
1329                 continue;
1330             $themelist[$themeobject->dirName] = $themeobject->name;
1331         }
1332         asort($themelist, SORT_STRING);
1333         return $themelist;
1334     }
1335
1336     /**
1337      * Returns an array of un-available themes. Designed used with the theme selector in the admin panel
1338      *
1339      * @return array
1340      */
1341     public static function unAvailableThemes()
1342     {
1343         $themelist = array();
1344         $disabledThemes = array();
1345         if ( isset($GLOBALS['sugar_config']['disabled_themes']) )
1346             $disabledThemes = explode(',',$GLOBALS['sugar_config']['disabled_themes']);
1347
1348         foreach ( self::$_themes as $themename => $themeobject ) {
1349             if ( in_array($themename,$disabledThemes) )
1350                 $themelist[$themeobject->dirName] = $themeobject->name;
1351         }
1352
1353         return $themelist;
1354     }
1355
1356     /**
1357      * Returns an array of all themes found in the current installation
1358      *
1359      * @return array
1360      */
1361     public static function allThemes()
1362     {
1363         $themelist = array();
1364
1365         foreach ( self::$_themes as $themename => $themeobject )
1366             $themelist[$themeobject->dirName] = $themeobject->name;
1367
1368         return $themelist;
1369     }
1370
1371     /**
1372      * Clears out the cached path locations for all themes
1373      */
1374     public static function clearAllCaches()
1375     {
1376         foreach ( self::$_themes as $themeobject ) {
1377             $themeobject->clearCache();
1378         }
1379     }
1380 }