You are here

function book_admin in Drupal 4

Same name and namespace in other branches
  1. 5 modules/book/book.module \book_admin()

Menu callback; displays the book administration page.

1 string reference to 'book_admin'
book_menu in modules/book.module
Implementation of hook_menu().

File

modules/book.module, line 976
Allows users to collaboratively author a book.

Code

function book_admin($nid = 0) {
  if ($nid) {
    return book_admin_edit($nid);
  }
  else {
    return book_admin_overview();
  }
}