Beispiel #1
0
 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;
 }