1
0
قرینه از https://github.com/matomo-org/matomo.git synced 2025-08-21 22:47:43 +00:00
Files
matomo/plugins/PrivacyManager/FeatureFlags/PrivacyCompliance.php
Nathan Gavin 842fb6c36f Create skeleton CNIL compliance page behind feature flag (#23466)
* Create blank page behind feature flag

---------

Co-authored-by: caddoo <1169490+caddoo@users.noreply.github.com>
2025-08-08 11:47:03 +12:00

23 خطوط
442 B
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
*/
declare(strict_types=1);
namespace Piwik\Plugins\PrivacyManager\FeatureFlags;
use Piwik\Plugins\FeatureFlags\FeatureFlagInterface;
class PrivacyCompliance implements FeatureFlagInterface
{
public function getName(): string
{
return 'PrivacyCompliance';
}
}