function book_access_outline_access in Book access 6
Same name and namespace in other branches
- 6.2 book_access.module \book_access_outline_access()
Determines if the outline tab is accessible.
See also
1 call to book_access_outline_access()
- book_access_outline_remove_access in ./
book_access.module - Determines if the user can remove nodes from the outline.
1 string reference to 'book_access_outline_access'
- book_access_menu_alter in ./
book_access.module - Implements hook_menu_alter().
File
- ./
book_access.module, line 320 - Allows access control for book nodes on a per book basis. It is based on forum_access.module and tac_lite.module.
Code
function book_access_outline_access($node) {
if (empty($node->book['bid'])) {
return FALSE;
}
$view_access = node_access('view', $node);
if (user_access('administer book outlines') && $view_access) {
return TRUE;
}
return book_access_grant_check($node->book['bid'], 'update') && $view_access;
}