| Versionen | |
|---|---|
| drupal6 – drupal7 | book_render() |
Menu callback; prints a listing of all books.
modules/
<?php
function book_render() {
$book_list = array();
foreach (book_get_books() as $book) {
$book_list[] = l($book['title'], $book['href'], $book['options']);
}
return theme('item_list', $book_list);
}
?>
Kommentare
Kommentar hinzufügen