book-navigation.vars.php 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for "book_navigation" theme hook [pre]process functions.
  5. */
  6. /**
  7. * Pre-processes variables for the "book_navigation" theme hook.
  8. *
  9. * See template for list of available variables.
  10. *
  11. * @param array $variables
  12. * An associative array of variables, passed by reference.
  13. *
  14. * @see book-navigation.tpl.php
  15. *
  16. * @ingroup theme_preprocess
  17. */
  18. function bootstrap_preprocess_book_navigation(array &$variables) {
  19. $variables['tree'] = _bootstrap_book_children($variables['book_link']);
  20. }
  21. /**
  22. * Formats the menu links for the child pages of the current page.
  23. *
  24. * @param array $book_link
  25. * A fully loaded menu link that is part of the book hierarchy.
  26. *
  27. * @return string
  28. * HTML for the links to the child pages of the current page.
  29. */
  30. function _bootstrap_book_children(array $book_link) {
  31. // Rebuild entire menu tree for the book.
  32. $tree = menu_build_tree($book_link['menu_name']);
  33. $tree = menu_tree_output($tree);
  34. // Fix the theme hook suggestions.
  35. _bootstrap_book_fix_theme_hooks($book_link['nid'], $tree);
  36. // Return the rendered output.
  37. return drupal_render($tree);
  38. }
  39. /**
  40. * Helper function to fix theme hooks in book TOC menus.
  41. *
  42. * @param int $bid
  43. * The book identification number.
  44. * @param array $element
  45. * The element to iterate over, passed by reference.
  46. * @param int $level
  47. * Used internally to determine the current level of the menu.
  48. */
  49. function _bootstrap_book_fix_theme_hooks($bid, array &$element, $level = 0) {
  50. $hook = $level === 0 ? $bid : 'sub_menu__' . $bid;
  51. $element['#theme_wrappers'] = array('menu_tree__book_toc__' . $hook);
  52. foreach (element_children($element) as $child) {
  53. $element[$child]['#theme'] = 'menu_link__book_toc__' . $hook;
  54. // Iterate through all child menu items as well.
  55. if (!empty($element[$child]['#below'])) {
  56. _bootstrap_book_fix_theme_hooks($bid, $element[$child]['#below'], ($level + 1));
  57. }
  58. }
  59. }