book_next
Definition
book_next($book_link)
modules/book/book.module, line 575
Description
Fetches the menu link for the next page of the book.
Code
<?php
function book_next($book_link) {
$flat = book_get_flat_menu($book_link);
// Assigning the array to $flat resets the array pointer for use with each().
do {
list($key, $curr) = each($flat);
} while ($key && $key != $book_link['mlid']);
if ($key == $book_link['mlid']) {
return current($flat);
}
}
?> 