You are here

function _book_outline_remove_access in Drupal 7

Same name and namespace in other branches
  1. 6 modules/book/book.module \_book_outline_remove_access()

Access callback: Determines if the user can remove nodes from the outline.

Parameters

$node: The node to remove from the outline.

See also

book_menu()

1 string reference to '_book_outline_remove_access'
book_menu in modules/book/book.module
Implements hook_menu().

File

modules/book/book.module, line 215
Allows users to create and organize related content in an outline.

Code

function _book_outline_remove_access($node) {
  return _book_node_is_removable($node) && _book_outline_access($node);
}