getCachePath() public method

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";
 }