Access callback: Determines if the user can remove nodes from the outline.
Drupal\node\Node $node: The node to remove from the outline.
function _book_outline_remove_access(Node $node) {
return _book_node_is_removable($node) && _book_outline_access($node);
}