You are here

public function views_plugin_access_perm::get_access_callback in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 6.3 plugins/views_plugin_access_perm.inc \views_plugin_access_perm::get_access_callback()
  2. 6.2 plugins/views_plugin_access_perm.inc \views_plugin_access_perm::get_access_callback()

Determine the access callback and arguments.

This information will be embedded in the menu in order to reduce performance hits during menu item access testing, which happens a lot.

Return value

array The first item should be the function to call, and the second item should be an array of arguments. The first item may also be TRUE (bool only) which will indicate no access control.

Overrides views_plugin_access::get_access_callback

File

plugins/views_plugin_access_perm.inc, line 25
Definition of views_plugin_access_perm.

Class

views_plugin_access_perm
Access plugin that provides permission-based access control.

Code

public function get_access_callback() {
  return array(
    'views_check_perm',
    array(
      $this->options['perm'],
    ),
  );
}