You are here

function _piwik_visibility_roles in Piwik Web Analytics 6.2

Same name and namespace in other branches
  1. 8 piwik.module \_piwik_visibility_roles()
  2. 5 piwik.module \_piwik_visibility_roles()
  3. 6 piwik.module \_piwik_visibility_roles()
  4. 7.2 piwik.module \_piwik_visibility_roles()
  5. 7 piwik.module \_piwik_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 _piwik_visibility_roles()
piwik_user in ./piwik.module
Implementation of hook_user().
_piwik_visibility_user in ./piwik.module
Tracking visibility check for an user object.

File

./piwik.module, line 440
Drupal Module: Piwik

Code

function _piwik_visibility_roles($account) {
  $visibility = variable_get('piwik_visibility_roles', 0);
  $enabled = $visibility;
  $roles = variable_get('piwik_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;
}