1
0
قرینه از https://github.com/matomo-org/matomo.git synced 2025-08-21 22:47:43 +00:00
Files
matomo/plugins/PrivacyManager/FeatureFlags/ConfigIdRandomisation.php
Michal Kleiner 74e65ea92b Add privacy setting allowing to randomise config ID on the backend (#22952)
* Implement initial config ID randomisation
* Initialise system test and test fixture
* Put UI control behind a feature flag
* Build dist files
2025-02-02 00:07:00 +13:00

32 خطوط
810 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;
/**
* PLEASE NOTE!
*
* This feature flag only controls if the Config ID randomisation setting is visible in the Privacy settings.
*
* Disabling the feature flag once the privacy setting was enabled won't stop the config ID randomisation unless
* disabled, either through the UI with the feature flag enabled or by removing the option from the db.
*
*/
class ConfigIdRandomisation implements FeatureFlagInterface
{
public function getName(): string
{
return 'ConfigIdRandomisation';
}
}