Esempio n. 1
0
 /**
  * @access protected
  */
 function _cache($key, $options = null)
 {
     $return = false;
     if ($this->cacheConfigured()) {
         $return = $this->_cache_store->fetch(AkCache::expandCacheKey($key, $this->_controller), $options);
     }
     return $return;
 }