コード例 #1
0
ファイル: ViewBuilder.php プロジェクト: ryosukemiyazawa/lasa
 public function replaceSections($template)
 {
     //sectionを変換する
     $view = new HTMLViewComponent($template);
     $template = $view->compile();
     return $template;
 }
コード例 #2
0
 function compile(Engine $factory)
 {
     $closure = $this->func;
     $obj = new HTMLViewComponent($this->template, $closure);
     $obj->_holderName = $this->getHolderName();
     return $obj->compile();
 }