You are here

function views_bulk_operations_remove_from_book_action in Views Bulk Operations (VBO) 7.3

Adds the action 'Remove node from a parent book'.

File

actions/book.action.inc, line 76
Implements actions for managing books (book.module).

Code

function views_bulk_operations_remove_from_book_action($node) {
  book_node_delete($node);

  // Remove book to avoid book_node_update() from building the links again.
  unset($node->book);
}