function _book_outline_remove_access

_book_outline_remove_access($node)

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()

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);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!book!book.module/function/_book_outline_remove_access/7.x