Craft\Minimee_SettingsModel::getCachePath PHP 메소드

getCachePath() 공개 메소드

public getCachePath ( ) : false | string
리턴 false | string
    public function getCachePath()
    {
        $value = parent::getAttribute('cachePath');
        if (!$value) {
            return false;
        }
        $cachePath = craft()->config->parseEnvironmentString($value);
        return $this->forceTrailingSlash($cachePath);
    }