コード例 #1
0
ファイル: Basic.php プロジェクト: TheProjecter/sylma
 protected function loadTemplate(template\parser\template $tpl, $iKey)
 {
     if ($tpl->useOnce()) {
         unset($this->aTemplates[$iKey]);
     }
     $tpl->build();
     $result = clone $tpl;
     return $result;
 }
コード例 #2
0
ファイル: Domed.php プロジェクト: TheProjecter/sylma
 protected function parseTemplateElement(template\parser\template $tpl, dom\element $el)
 {
     return $tpl->parseElement($el);
 }
コード例 #3
0
ファイル: Templated.php プロジェクト: TheProjecter/sylma
 protected function getTreeID(parser\template $tpl, $sToken)
 {
     return $tpl->getID() . $sToken;
 }