getCachePath() 공개 메소드

public getCachePath ( )
예제 #1
0
파일: SimpleCache.php 프로젝트: elgg/elgg
 /**
  * Returns the path to where views are simplecached.
  *
  * @return string
  */
 private function getPath()
 {
     $realpath = realpath($this->config->getCachePath());
     return rtrim($realpath, DIRECTORY_SEPARATOR) . "/views_simplecache";
 }