function views_check_roles

Access callback for the views_plugin_access_role access plugin.

Determine if the specified user has access to a view on the basis of any of the requested roles. If the $account argument is omitted, the current user is used.

1 call to views_check_roles()
views_plugin_access_role::access in plugins/views_plugin_access_role.inc
Determine if the current user has access or not.
1 string reference to 'views_check_roles'
views_plugin_access_role::get_access_callback in plugins/views_plugin_access_role.inc
Determine the access callback and arguments.

File

./views.module, line 1170

Code

function views_check_roles($rids, $account = NULL) {
    global $user;
    $account = isset($account) ? $account : $user;
    $roles = array_keys($account->roles);
    $roles[] = $account->uid ? DRUPAL_AUTHENTICATED_RID : DRUPAL_ANONYMOUS_RID;
    $has_access = user_access('access all views', $account);
    $rids = array_filter($rids);
    $intersect = array_intersect($rids, $roles);
    return $has_access || $intersect;
}