You are here

function _matomo_visibility_roles in Matomo Analytics 7.2

Same name and namespace in other branches
  1. 8 matomo.module \_matomo_visibility_roles()

Based on visibility setting this function returns TRUE if GA code should be added for the current role and otherwise FALSE.

2 calls to _matomo_visibility_roles()
matomo_form_user_profile_form_alter in ./matomo.module
Implement hook_form_FORM_ID_alter().
_matomo_visibility_user in ./matomo.module
Tracking visibility check for an user object.

File

./matomo.module, line 612
Drupal Module: Matomo

Code

function _matomo_visibility_roles($account) {
  $visibility = variable_get('matomo_visibility_roles', 0);
  $enabled = $visibility;
  $roles = variable_get('matomo_roles', array());
  if (array_sum($roles) > 0) {

    // One or more roles are selected.
    foreach (array_keys($account->roles) as $rid) {

      // Is the current user a member of one of these roles?
      if (isset($roles[$rid]) && $rid == $roles[$rid]) {

        // Current user is a member of a role that should be tracked/excluded from tracking.
        $enabled = !$visibility;
        break;
      }
    }
  }
  else {

    // No role is selected for tracking, therefore all roles should be tracked.
    $enabled = TRUE;
  }
  return $enabled;
}