function book_admin_overview

Returns an administrative overview of all books.

Return value

string A HTML-formatted string with the administrative page content.

See also

book_menu()

1 string reference to 'book_admin_overview'
book_menu in drupal/modules/book/book.module
Implements hook_menu().

File

drupal/modules/book/book.admin.inc, line 16
Administration page callbacks for the Book module.

Code

function book_admin_overview() {
  $rows = array();
  $headers = array(
    t('Book'),
    t('Operations'),
  );

  // Add any recognized books to the table list.
  foreach (book_get_books() as $book) {
    $rows[] = array(
      l($book['title'], $book['href'], $book['options']),
      l(t('edit order and titles'), 'admin/content/book/' . $book['nid']),
    );
  }
  return theme('table', array(
    'header' => $headers,
    'rows' => $rows,
    'empty' => t('No books available.'),
  ));
}