예제 #1
0
 public function getFullPath($filename = NULL)
 {
     if ($filename === NULL) {
         return $this->path;
     } else {
         return $this->path . '/' . Watchdog::safeFilename($this->prefix . $filename . $this->suffix);
     }
 }
예제 #2
0
 public function getFullPath($key)
 {
     $return = $this->getCacheFolder($this->cacheGroup) . DIRECTORY_SEPARATOR . Watchdog::safeFilename($key);
     return $return;
 }