class MTimeProtectedFileStorage extends MTimeProtectedFastFileStorage
{ /**
* {@inheritdoc}
*/
public function load($name) { if (($filename =
$this->
checkFile($name)) !== FALSE
) { // Inline parent::load() to avoid an expensive getFullPath() call.
return (@
include_once $filename) !== FALSE;
} return FALSE;
} /**
* {@inheritdoc}
*/
public function exists($name) { return $this->
checkFile($name) !== FALSE;
}