Beispiel #1
0
 /**
  * Writes out the cached paths if they need to be.
  *
  * @param   string  $cache_id  Cache id to read
  * @return  void
  */
 public function write_cache($cache_id)
 {
     // FIXME: Need to figure out a way to load the cache super early (before config
     // file is even loaded)
     return;
     if ($this->cache_valid) {
         return;
     }
     \Fuel::cache($cache_id, $this->cached_paths);
 }