%PDF- %PDF-
Direktori : /home/lightco1/www/feiss.com.au/libraries/nextend2/nextend/library/libraries/cache/ |
Current File : /home/lightco1/www/feiss.com.au/libraries/nextend2/nextend/library/libraries/cache/simple.php |
<?php class N2CacheSimple extends N2Cache { public function makeCache($fileName, $callable) { if (!$this->isCached($fileName)) { $this->createCacheFile($fileName, call_user_func($callable)); } return $this->getStorageFilePath($fileName); } private function isCached($fileName) { if (N2Filesystem::existsFile($this->getStorageFilePath($fileName))) { return true; } return false; } private function createCacheFile($fileName, $content) { return N2Filesystem::createFile($this->getStorageFilePath($fileName), $content); } }