/**
  * Remove filename from the cache
  *
  * @param string $filename
  * @return ICE_File|null The removed fstat object, null if no such filename exists.
  */
 public function remove($filename)
 {
     return parent::remove($this->hash($filename));
 }
Beispiel #2
0
 /**
  * Remove a data key from the registry (for all themes)
  *
  * @param string $name
  * @return mixed
  */
 public function remove($name)
 {
     // wipe cache for this item
     unset($this->__lookup_cache__[$name]);
     // call parent to remove
     return parent::remove($name);
 }