Esempio n. 1
0
 /**
  * Constructor
  * 
  * @param string $name
  */
 public function __construct($name)
 {
     parent::__construct($name);
     $path = Gear::preparePath($this->name, 'templates') . EXT;
     if (file_exists($path)) {
         $this->path = $path;
         //$this->code = file_get_contents($this->path);
         ini_get('short_open_tag') or $this->code = str_replace('<?=', '<?php echo', $this->code);
     } else {
         /**
          * There we have an option → render as normal error or with just simple exit.
          * If we try to render any Messages (success, notify or error template) we can be easliy catched by looping error throwing us into nowhere.
          * That's why we use such a hint there.
          */
         $message = t('Template <b>%s</b> is not found by path <u>%s</u>.', 'Errors', $this->name, $this->path);
         exit($message);
         //            strpos($this->name, 'Messages') !== FALSE ? exit($message) : error($message);
     }
 }
Esempio n. 2
0
 /**
  * Clear template variables
  */
 public static function clear()
 {
     return Template_Abstract::clear();
 }
Esempio n. 3
0
 /**
  * Clear global vars
  */
 public static function clear()
 {
     self::$global_vars = array();
 }