function _book_outline_remove_access

Same name and namespace in other branches
  1. 6.x drupal-6.x/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 drupal-7.x/modules/book/book.module
Implements hook_menu().

Archivo

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

Código

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