Same name and namespace in other branches
  1. 6.x-3.x includes/handlers.inc \views_handler::access()

Check whether current user has access to this handler.

Return value

bool

10 methods override views_handler::access()
views_handler_field_comment_link_approve::access in modules/comment/views_handler_field_comment_link_approve.inc
Check whether current user has access to this handler.
views_handler_field_comment_link_delete::access in modules/comment/views_handler_field_comment_link_delete.inc
Check whether current user has access to this handler.
views_handler_field_comment_link_reply::access in modules/comment/views_handler_field_comment_link_reply.inc
Check whether current user has access to this handler.
views_handler_field_field::access in modules/field/views_handler_field_field.inc
Check whether current user has access to this handler.
views_handler_field_locale_link_edit::access in modules/locale/views_handler_field_locale_link_edit.inc
Check whether current user has access to this handler.

... See full list

File

includes/handlers.inc, line 611
Defines the various handler objects to help build and display views.

Class

views_handler

Code

public function access() {
  if (isset($this->definition['access callback']) && function_exists($this->definition['access callback'])) {
    if (isset($this->definition['access arguments']) && is_array($this->definition['access arguments'])) {
      return call_user_func_array($this->definition['access callback'], $this->definition['access arguments']);
    }
    return $this->definition['access callback']();
  }
  return TRUE;
}