Example #1
0
 function renderProperty($propertyName, $data)
 {
     $tpl = new Template($this->{$propertyName});
     $this->{$propertyName} = $tpl->apply($data);
     return $this;
 }
Example #2
0
 function updateContent($data)
 {
     $tpl = new Template($this->content);
     $this->content = $tpl->apply($data);
     return $this;
 }