Ejemplo n.º 1
0
 /**
  * Fetch all the config directives
  *
  * @param int $id
  *
  * @return Default_Model_User
  */
 public function fetchAll()
 {
     $cache = $this->getCache();
     if (!($config = $cache->load('config_all'))) {
         $config = $this->_mapper->fetchAll();
         $cache->save($config, 'config_all');
     }
     return $config;
 }