Piwik\Plugins\Installation\ServerFilesGenerator::getDenyAllHtaccessContent PHP Method

getDenyAllHtaccessContent() protected static method

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