예제 #1
0
파일: router.php 프로젝트: ryanshoover/core
 public function getCacheKey()
 {
     if (!isset($this->cache_key)) {
         $files = $this->getRoutingFiles();
         $files[] = 'settings/routes.php';
         $files[] = 'core/routes.php';
         $this->cache_key = OC_Cache::generateCacheKeyFromFiles($files);
     }
     return $this->cache_key;
 }