Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/PrivacyManager/Config.php')
-rw-r--r--plugins/PrivacyManager/Config.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/PrivacyManager/Config.php b/plugins/PrivacyManager/Config.php
index 3767cdc5f4..93957263dd 100644
--- a/plugins/PrivacyManager/Config.php
+++ b/plugins/PrivacyManager/Config.php
@@ -23,6 +23,8 @@ use Piwik\Tracker\Cache;
* anonymization is deactivated, this value is ignored. For IPv4/IPv6 addresses,
* valid values are the number of octets in IP address to mask (from 0 to 4).
* For IPv6 addresses 0..4 means that 0, 64, 80, 104 or all bits are masked.
+ * @property int $anonymizeUserId If enabled, it will pseudo anonymize the User ID
+ * @property int $anonymizeOrderId If enabled, it will anonymize the Order ID
*/
class Config
{
@@ -31,6 +33,8 @@ class Config
'ipAddressMaskLength' => array('type' => 'integer', 'default' => 2),
'doNotTrackEnabled' => array('type' => 'boolean', 'default' => true),
'ipAnonymizerEnabled' => array('type' => 'boolean', 'default' => true),
+ 'anonymizeUserId' => array('type' => 'boolean', 'default' => false),
+ 'anonymizeOrderId' => array('type' => 'boolean', 'default' => false),
);
public function __set($name, $value)