You are here

function _book_admin_table in Drupal 5

Same name and namespace in other branches
  1. 4 modules/book.module \_book_admin_table()
  2. 6 modules/book/book.admin.inc \_book_admin_table()
  3. 7 modules/book/book.admin.inc \_book_admin_table()
2 calls to _book_admin_table()
book_admin_edit in modules/book/book.module
Display an administrative view of the hierarchy of a book.
book_admin_orphan in modules/book/book.module
Menu callback; displays a listing of all orphaned book pages.

File

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

Code

function _book_admin_table($nodes = array()) {
  $form = array(
    '#theme' => 'book_admin_table',
    '#tree' => TRUE,
  );
  foreach ($nodes as $node) {
    $form = array_merge($form, _book_admin_table_tree($node, 0));
  }
  return $form;
}