Beispiel #1
0
 protected static function getSeparator()
 {
     if (NULL === self::$separator) {
         $default = ' — ';
         $config = Zend_Registry::getInstance()->get('config')->site;
         if (!$config) {
             self::$sepsrator = $default;
         } else {
             self::$separator = $config->title->get('separator', $default);
         }
         unset($config);
     }
     return self::$separator;
 }