Prado\Web\UI\WebControls\TOutputCache::preRenderRecursive PHP 메소드

preRenderRecursive() 보호된 메소드

This method overrides the parent implementation by setting up the stack of the output cache in the page. Only framework developers should use this method.
protected preRenderRecursive ( )
    protected function preRenderRecursive()
    {
        if ($this->_cacheAvailable && !$this->_dataCached) {
            $stack = $this->getPage()->getCachingStack();
            $stack->push($this);
            parent::preRenderRecursive();
            $stack->pop();
        } else {
            parent::preRenderRecursive();
        }
    }