Piwik\Plugins\Installation\ServerFilesGenerator::getDenyAllHtaccessContent PHP Méthode

getDenyAllHtaccessContent() protected static méthode

protected static getDenyAllHtaccessContent ( ) : string
Résultat 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;
    }