Elgg\Cache\SimpleCache::getPath PHP Method

getPath() private method

Returns the path to where views are simplecached.
private getPath ( ) : string
return string
    private function getPath()
    {
        $realpath = realpath($this->config->getCachePath());
        return rtrim($realpath, DIRECTORY_SEPARATOR) . "/views_simplecache";
    }