示例#1
0
文件: Page.php 项目: jne21/hatatool
 function renderProperty($propertyName, $data)
 {
     $tpl = new Template($this->{$propertyName});
     $this->{$propertyName} = $tpl->apply($data);
     return $this;
 }
示例#2
0
 function updateContent($data)
 {
     $tpl = new Template($this->content);
     $this->content = $tpl->apply($data);
     return $this;
 }