| 1 | <?php |
| 2 | // $Id: book-all-books-block.tpl.php,v 1.3 2009/04/08 03:23:46 dries Exp $ |
| 3 | |
| 4 | /** |
| 5 | * @file |
| 6 | * Default theme implementation for rendering book outlines within a block. |
| 7 | * This template is used only when the block is configured to "show block on |
| 8 | * all pages" which presents Multiple independent books on all pages. |
| 9 | * |
| 10 | * Available variables: |
| 11 | * - $book_menus: Array of book outlines rendered as an unordered list. It is |
| 12 | * keyed to the parent book ID which is also the ID of the parent node |
| 13 | * containing an entire outline. |
| 14 | */ |
| 15 | ?> |
| 16 | <?php foreach ($book_menus as $book_id => $menu) : ?> |
| 17 | <div id="book-block-menu-<?php print $book_id; ?>" class="book-block-menu"> |
| 18 | <?php print $menu; ?> |
| 19 | </div> |
| 20 | <?php endforeach; ?> |
| 21 |