コード例 #1
0
ファイル: Page.php プロジェクト: jne21/hatatool
 function renderProperty($propertyName, $data)
 {
     $tpl = new Template($this->{$propertyName});
     $this->{$propertyName} = $tpl->apply($data);
     return $this;
 }
コード例 #2
0
ファイル: Renderer.php プロジェクト: jne21/hatatool
 function updateContent($data)
 {
     $tpl = new Template($this->content);
     $this->content = $tpl->apply($data);
     return $this;
 }