/**
  *
  * @return unknown_type
  */
 public static function getAll()
 {
     $themes = EfrontCache::getInstance()->getCache('themes');
     if (!$themes) {
         $themes = parent::getAll("themes", true);
         EfrontCache::getInstance()->setCache('themes', $themes);
     }
     return $themes;
 }