function views_check_perm in Views (for Drupal 7) 8.3
Same name and namespace in other branches
- 6.3 views.module \views_check_perm()
- 6.2 views.module \views_check_perm()
- 7.3 views.module \views_check_perm()
Access callback for the views_plugin_access_perm access plugin.
Determine if the specified user has access to a view on the basis of permissions. If the $account argument is omitted, the current user is used.
1 call to views_check_perm()
- Permission::access in lib/
Views/ user/ Plugin/ views/ access/ Permission.php - Determine if the current user has access or not.
1 string reference to 'views_check_perm'
- Permission::get_access_callback in lib/
Views/ user/ Plugin/ views/ access/ Permission.php - Determine the access callback and arguments.
File
- ./
views.module, line 1101 - Primarily Drupal hooks and global API functions to manipulate views.
Code
function views_check_perm($perm, $account = NULL) {
return user_access($perm, $account) || user_access('access all views', $account);
}