قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-21 22:47:43 +00:00

* Create blank page behind feature flag --------- Co-authored-by: caddoo <1169490+caddoo@users.noreply.github.com>
23 خطوط
442 B
PHP
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';
|
|
}
|
|
}
|