Piwik\Plugins\Installation\ServerFilesGenerator::getDenyAllHtaccessContent PHP 메소드

getDenyAllHtaccessContent() 보호된 정적인 메소드

protected static getDenyAllHtaccessContent ( ) : string
리턴 string
    protected static function getDenyAllHtaccessContent()
    {
        $deny = self::getDenyHtaccessContent();
        $denyAll = "# First, deny access to all files in this directory\n" . "<Files \"*\">\n" . $deny . "\n" . "</Files>\n";
        return $denyAll;
    }