示例#1
0
文件: Define.php 项目: palmic/lbox
 public function after(PHPTAL_Php_CodeWriter $codewriter)
 {
     if ($this->tmp_content_var) {
         $codewriter->recycleTempVariable($this->tmp_content_var);
     }
     if ($this->_pushedContext) {
         $codewriter->popContext();
     }
 }
示例#2
0
 public function after(PHPTAL_Php_CodeWriter $codewriter)
 {
     $codewriter->doEnd();
     $codewriter->popContext();
     $codewriter->recycleTempVariable($this->var);
 }