getCacheManager(); foreach ($this->getOptions() as $key => $value) { if ($manager->hasCacheTemplate($key)) { $manager->setTemplateOptions($key, $value); } else { $manager->setCacheTemplate($key, $value); } } if (null !== ($bootstrap = $this->getBootstrap())) { $this->getBootstrap()->cacheManager = $manager; } return $manager; } /** * Retrieve front controller instance * * @return Zend_Controller_Front */ public function getCacheManager() { if (null === $this->_manager) { $this->_manager = new Zend_Cache_Manager; } return $this->_manager; } }