Ejemplo n.º 1
0
 /**
  * Return controllers modification info from the cache
  * @return array 
  */
 protected function _getControllersCache()
 {
     $controllers = array();
     if ($this->cache->hasItem('controllers')) {
         $controllers = (array) unserialize($this->cache->getItem('controllers'));
     }
     return $controllers;
 }