function views_plugin_access::access
Determine if the current user has access or not.
4 methods override views_plugin_access::access()
- views_plugin_access_perm::access in plugins/
views_plugin_access_perm.inc - Determine if the current user has access or not.
- views_plugin_access_role::access in plugins/
views_plugin_access_role.inc - Determine if the current user has access or not.
- views_test_plugin_access_test_dynamic::access in tests/
test_plugins/ views_test_plugin_access_test_dynamic.inc - Determine if the current user has access or not.
- views_test_plugin_access_test_static::access in tests/
test_plugins/ views_test_plugin_access_test_static.inc - Determine if the current user has access or not.
File
-
plugins/
views_plugin_access.inc, line 75
Class
- views_plugin_access
- The base plugin to handle access control.
Code
public function access($account) {
// Default to no access control.
return TRUE;
}