1 views_test_plugin_access_test_dynamic.inc views_test_plugin_access_test_dynamic::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

an 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

core/modules/views/tests/views_test/test_plugins/views_test_plugin_access_test_dynamic.inc, line 22
Definition of views_test_plugin_access_test_dynamic.

Class

views_test_plugin_access_test_dynamic
Tests a dynamic access plugin.

Code

function get_access_callback() {
  return array('views_test_test_dynamic_access_callback', array(!empty($options['access']), 1, 2));
}