Prado\Web\UI\WebControls\TOutputCache::preRenderRecursive PHP Method

preRenderRecursive() protected method

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();
        }
    }