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
1 string reference to 'book_admin_overview'
- book_menu in modules/
book/ book.module - Implements hook_menu().
File
-
modules/
book/ book.admin.inc, line 16
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.'),
));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.