| Versionen | |
|---|---|
| drupal6 | book_toc($bid, $exclude = array(), $depth_limit) |
| drupal7 | book_toc($bid, $depth_limit, $exclude = array()) |
Returns an array of book pages in table of contents order.
$bid The ID of the book whose pages are to be listed.
$exclude Optional array of mlid values. Any link whose mlid is in this array will be excluded (along with its children).
$depth_limit Any link deeper than this value will be excluded (along with its children).
An array of mlid, title pairs for use as options for selecting a book page.
modules/
<?php
function book_toc($bid, $exclude = array(), $depth_limit) {
$tree = menu_tree_all_data(book_menu_name($bid));
$toc = array();
_book_toc_recurse($tree, '', $toc, $exclude, $depth_limit);
return $toc;
}
?>
Kommentare
Kommentar hinzufügen