function hook_book_copy_goto_alter in Book Copy 7
Implements hook_book_copy_goto_alter().
Allow for redirection after a book has been cloned
1 invocation of hook_book_copy_goto_alter()
- book_copy_copy_book in ./
book_copy.module - This function is intended to be called via drupals batch processing system and will clone an entire or partial book.
File
- ./
book_copy.api.php, line 8
Code
function hook_book_copy_goto_alter($book) {
drupal_goto('node/' . $book->nid);
}