コード例 #1
0
ファイル: pradolite.php プロジェクト: tejdeeps/tejcs.com
 protected function preRenderRecursive()
 {
     if ($this->_cacheAvailable && !$this->_dataCached) {
         $stack = $this->getPage()->getCachingStack();
         $stack->push($this);
         parent::preRenderRecursive();
         $stack->pop();
     } else {
         parent::preRenderRecursive();
     }
 }