You are here

function book_helper_help in Book helper 6

Same name and namespace in other branches
  1. 7 book_helper.module \book_helper_help()

Implementation of hook_help().

File

./book_helper.module, line 10
Improves Drupal's core book module's functionality.

Code

function book_helper_help($path, $arg) {
  switch ($path) {
    case 'node/%/delete':
      book_helper_display_delete_book_page_warning($arg[1]);
      break;
  }
}