public function getCachedContent() { if ($this->cachedData === null) { $cachedData = $this->viewElementsGathener->getCachedData($this->getId()); if ($cachedData === false) { $this->cachedData = false; return false; } $this->viewElementsGathener->repeatGatheredData($this->view, $cachedData); $this->cachedData = parent::getCachedContent(); } return $this->cachedData; }
/** * Ends fragment caching. */ public function endCache() { FragmentCache::end(); }
/** * Ends FragmentCache widget. */ public function endCache() { return FragmentCache::end(); }