示例#1
0
 /**
  * Include another template into current template
  * @return \ZtHtml
  */
 public function load($key)
 {
     $tplFile = $this->_path->getPath($key);
     if ($tplFile) {
         $properties = $this->getProperties();
         extract($properties, EXTR_REFS);
         include $tplFile;
     }
     return $this;
 }