File: D:/web/matomo.vdk/plugins/Diagnostics/Diagnostic/RecommendedPrivateDirectories.php
<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik\Plugins\Diagnostics\Diagnostic;
use Piwik\Filesystem;
use Piwik\Translation\Translator;
use Piwik\Url;
class RecommendedPrivateDirectories extends AbstractPrivateDirectories
{
protected $privatePaths = ['tmp/', 'tmp/empty', 'lang/en.json'];
protected $labelKey = 'Diagnostics_RecommendedPrivateDirectories';
public function __construct(Translator $translator)
{
parent::__construct($translator);
Filesystem::mkdir(PIWIK_INCLUDE_PATH . '/tmp');
file_put_contents(PIWIK_INCLUDE_PATH . '/tmp/empty', 'test');
}
protected function addError(DiagnosticResult &$result)
{
$result->addItem(new DiagnosticResultItem(
DiagnosticResult::STATUS_INFORMATIONAL,
$this->translator->translate('Diagnostics_UrlsAccessibleViaBrowser') . ' ' .
$this->translator->translate('General_ReadThisToLearnMore', [
Url::getExternalLinkTag('https://matomo.org/faq/troubleshooting/how-do-i-fix-the-error-private-directories-are-accessible/'),
'</a>',
])
));
}
}