function _piwik_visibility_user in Piwik Web Analytics 7
Same name and namespace in other branches
- 8 piwik.module \_piwik_visibility_user()
- 5 piwik.module \_piwik_visibility_user()
- 6.2 piwik.module \_piwik_visibility_user()
- 6 piwik.module \_piwik_visibility_user()
- 7.2 piwik.module \_piwik_visibility_user()
Tracking visibility check for an user object.
Parameters
$account: A user object containing an array of roles to check.
Return value
boolean A decision on if the current user is being tracked by Piwik.
1 call to _piwik_visibility_user()
- piwik_page_alter in ./
piwik.module - Implementation of hook_page_alter() to insert JavaScript to the appropriate scope/region of the page.
File
- ./
piwik.module, line 322 - Drupal Module: Piwik Adds the required Javascript to the bottom of all your Drupal pages to allow tracking by the Piwik statistics package.
Code
function _piwik_visibility_user($account) {
$enabled = FALSE;
// Is current user a member of a role that should be tracked?
if (_piwik_visibility_roles($account)) {
// Use the user's block visibility setting, if necessary.
if (($custom = variable_get('piwik_custom', 0)) != 0) {
if ($account->uid && isset($account->data['piwik']['custom'])) {
$enabled = $account->data['piwik']['custom'];
}
else {
$enabled = $custom == 1;
}
}
else {
$enabled = TRUE;
}
}
return $enabled;
}