diff --git a/config/install/adobe_analytics.settings.yml b/config/install/adobe_analytics.settings.yml index a7e1aa9..96b071f 100644 --- a/config/install/adobe_analytics.settings.yml +++ b/config/install/adobe_analytics.settings.yml @@ -1,4 +1,4 @@ -role_tracking_type: inclusive +role_tracking_type: exclusive js_file_location: '' codesnippet: '' version: H.20.3. diff --git a/src/Form/AdobeAnalyticsAdminSettings.php b/src/Form/AdobeAnalyticsAdminSettings.php index e79e4dc..62cc9dd 100644 --- a/src/Form/AdobeAnalyticsAdminSettings.php +++ b/src/Form/AdobeAnalyticsAdminSettings.php @@ -85,8 +85,8 @@ class AdobeAnalyticsAdminSettings extends ConfigFormBase { '#type' => 'select', '#title' => $this->t('Add tracking for specific roles'), '#options' => [ - 'inclusive' => $this->t('Add to the selected roles only'), 'exclusive' => $this->t('Add to all roles except the ones selected'), + 'inclusive' => $this->t('Add to the selected roles only'), ], '#default_value' => $default_value, ];