예제 #1
0
파일: cache.php 프로젝트: ASDAFF/bitrix-5
 function IsCacheExpired($path)
 {
     if (is_object($this) && is_object($this->_cache)) {
         return $this->_cache->IsCacheExpired($path);
     } else {
         $obCache = new CPHPCache();
         return $obCache->IsCacheExpired($path);
     }
 }
예제 #2
0
파일: cache.php 프로젝트: ASDAFF/entask.ru
 public function isCacheExpired($path)
 {
     return $this->cacheEngine->isCacheExpired($path);
 }