menu-tree.func.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for bootstrap_menu_tree() and suggestion(s).
  5. */
  6. /**
  7. * Returns HTML for a wrapper for a menu sub-tree.
  8. *
  9. * @param array $variables
  10. * An associative array containing:
  11. * - tree: An HTML string containing the tree's items.
  12. *
  13. * @return string
  14. * The constructed HTML.
  15. *
  16. * @see template_preprocess_menu_tree()
  17. * @see theme_menu_tree()
  18. *
  19. * @ingroup theme_functions
  20. */
  21. function bootstrap_menu_tree(array &$variables) {
  22. return '<ul class="menu nav">' . $variables['tree'] . '</ul>';
  23. }
  24. /**
  25. * Bootstrap theme wrapper function for the primary menu links.
  26. *
  27. * @param array $variables
  28. * An associative array containing:
  29. * - tree: An HTML string containing the tree's items.
  30. *
  31. * @return string
  32. * The constructed HTML.
  33. */
  34. function bootstrap_menu_tree__primary(array &$variables) {
  35. return '<ul class="menu nav navbar-nav">' . $variables['tree'] . '</ul>';
  36. }
  37. /**
  38. * Bootstrap theme wrapper function for the secondary menu links.
  39. *
  40. * @param array $variables
  41. * An associative array containing:
  42. * - tree: An HTML string containing the tree's items.
  43. *
  44. * @return string
  45. * The constructed HTML.
  46. */
  47. function bootstrap_menu_tree__secondary(array &$variables) {
  48. return '<ul class="menu nav navbar-nav secondary">' . $variables['tree'] . '</ul>';
  49. }
  50. /**
  51. * Overrides theme_menu_tree() for book module.
  52. *
  53. * @param array $variables
  54. * An associative array containing:
  55. * - tree: An HTML string containing the tree's items.
  56. *
  57. * @return string
  58. * The constructed HTML.
  59. */
  60. function bootstrap_menu_tree__book_toc(array &$variables) {
  61. $output = '<div class="book-toc btn-group pull-right">';
  62. $output .= ' <button type="button" class="btn btn-link dropdown-toggle" data-toggle="dropdown">';
  63. $output .= t('!icon Outline !caret', array(
  64. '!icon' => _bootstrap_icon('list'),
  65. '!caret' => '<span class="caret"></span>',
  66. ));
  67. $output .= '</button>';
  68. $output .= '<ul class="dropdown-menu" role="menu">' . $variables['tree'] . '</ul>';
  69. $output .= '</div>';
  70. return $output;
  71. }
  72. /**
  73. * Overrides theme_menu_tree() for book module.
  74. *
  75. * @param array $variables
  76. * An associative array containing:
  77. * - tree: An HTML string containing the tree's items.
  78. *
  79. * @return string
  80. * The constructed HTML.
  81. */
  82. function bootstrap_menu_tree__book_toc__sub_menu(array &$variables) {
  83. return '<ul class="dropdown-menu" role="menu">' . $variables['tree'] . '</ul>';
  84. }