File size: 1,581 Bytes
e852054 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | <?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik\Plugins\AnonymousPiwikUsageMeasurement;
use Piwik\Settings\Setting;
use Piwik\Settings\FieldConfig;
/**
* Defines Settings for AnonymousPiwikUsageMeasurement.
*/
class UserSettings extends \Piwik\Settings\Plugin\UserSettings
{
/** @var Setting */
public $userTrackingEnabled;
/**
* @var SystemSettings
*/
private $systemSettings;
public function __construct(SystemSettings $systemSettings)
{
$this->systemSettings = $systemSettings;
parent::__construct();
}
protected function init()
{
$this->userTrackingEnabled = $this->createUsersOptOutSetting();
if (!$this->systemSettings->canUserOptOut->getValue()) {
// we show this setting only when a user can actually opt out
$this->userTrackingEnabled->setIsWritableByCurrentUser(false);
}
}
private function createUsersOptOutSetting()
{
return $this->makeSetting('userTrackingEnabled', $default = true, FieldConfig::TYPE_BOOL, function (FieldConfig $field) {
$field->title = 'Matomo usage tracking enabled';
$field->uiControl = FieldConfig::UI_CONTROL_CHECKBOX;
$field->description = 'If enabled, anonymous usage data will be tracked. For example which pages are viewed and which reports are used most often. For more information contact your system administrator.';
});
}
}
|