Пример #1
0
 /**
  * Return template content
  */
 public function content($parsePHP = true)
 {
     // Set static level tracker
     //self::$_level = 0;
     // Set template vars
     $content = parent::content($parsePHP);
     // Reset static level tracker
     self::$_level = 0;
     return $content;
 }
Пример #2
0
 /**
  * Return template content
  */
 public function content($parsePHP = true)
 {
     // Set template vars
     return parent::content($parsePHP);
 }
Пример #3
0
 /**
  * Return template content
  */
 public function content($parsePHP = true)
 {
     // Set template vars
     $this->set('fields', $this->fields());
     return parent::content($parsePHP);
 }
Пример #4
0
 /**
  * Return template content
  */
 public function content($parsePHP = true)
 {
     // Set template vars
     $this->set('data', $this->_data);
     $this->set('columns', $this->columns());
     return parent::content($parsePHP);
 }