menu-link.func.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for bootstrap_menu_link() and suggestion(s).
  5. */
  6. /**
  7. * Returns HTML for a menu link and submenu.
  8. *
  9. * @param array $variables
  10. * An associative array containing:
  11. * - element: Structured array data for a menu link.
  12. *
  13. * @return string
  14. * The constructed HTML.
  15. *
  16. * @see theme_menu_link()
  17. *
  18. * @ingroup theme_functions
  19. */
  20. function bootstrap_menu_link(array $variables) {
  21. $element = $variables['element'];
  22. $sub_menu = '';
  23. $options = !empty($element['#localized_options']) ? $element['#localized_options'] : array();
  24. // Check plain title if "html" is not set, otherwise, filter for XSS attacks.
  25. $title = empty($options['html']) ? check_plain($element['#title']) : filter_xss_admin($element['#title']);
  26. // Ensure "html" is now enabled so l() doesn't double encode. This is now
  27. // safe to do since both check_plain() and filter_xss_admin() encode HTML
  28. // entities. See: https://www.drupal.org/node/2854978
  29. $options['html'] = TRUE;
  30. $href = $element['#href'];
  31. $attributes = !empty($element['#attributes']) ? $element['#attributes'] : array();
  32. if ($element['#below']) {
  33. // Prevent dropdown functions from being added to management menu so it
  34. // does not affect the navbar module.
  35. if (($element['#original_link']['menu_name'] == 'management') && (module_exists('navbar'))) {
  36. $sub_menu = drupal_render($element['#below']);
  37. }
  38. elseif ((!empty($element['#original_link']['depth'])) && ($element['#original_link']['depth'] == 1)) {
  39. // Add our own wrapper.
  40. unset($element['#below']['#theme_wrappers']);
  41. $sub_menu = '<ul class="dropdown-menu">' . drupal_render($element['#below']) . '</ul>';
  42. // Generate as standard dropdown.
  43. $title .= ' <span class="caret"></span>';
  44. $attributes['class'][] = 'dropdown';
  45. $options['attributes']['class'][] = 'dropdown-toggle';
  46. $options['attributes']['data-toggle'] = 'dropdown';
  47. }
  48. }
  49. return '<li' . drupal_attributes($attributes) . '>' . l($title, $href, $options) . $sub_menu . "</li>\n";
  50. }
  51. /**
  52. * Overrides theme_menu_link() for book module.
  53. */
  54. function bootstrap_menu_link__book_toc(array $variables) {
  55. $element = $variables['element'];
  56. $sub_menu = drupal_render($element['#below']);
  57. $title = $element['#title'];
  58. $href = $element['#href'];
  59. $options = !empty($element['#localized_options']) ? $element['#localized_options'] : array();
  60. $attributes = !empty($element['#attributes']) ? $element['#attributes'] : array();
  61. $attributes['role'] = 'presentation';
  62. // Header.
  63. $link = TRUE;
  64. if ($title && $href === FALSE) {
  65. $attributes['class'][] = 'dropdown-header';
  66. $link = FALSE;
  67. }
  68. // Divider.
  69. elseif ($title === FALSE && $href === FALSE) {
  70. $attributes['class'][] = 'divider';
  71. $link = FALSE;
  72. }
  73. // Active.
  74. elseif (($href == $_GET['q'] || ($href == '<front>' && drupal_is_front_page())) && (empty($options['language']))) {
  75. $attributes['class'][] = 'active';
  76. }
  77. // Convert to a link.
  78. if ($link) {
  79. $title = l($title, $href, $options);
  80. }
  81. // Otherwise, filter the title if "html" is not set, otherwise l() will
  82. // automatically sanitize using check_plain(), so no need to call that here.
  83. elseif (empty($options['html'])) {
  84. $title = filter_xss_admin($title);
  85. }
  86. return '<li' . drupal_attributes($attributes) . '>' . $title . $sub_menu . "</li>\n";
  87. }