menu-local-action.func.php 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for bootstrap_menu_local_action().
  5. */
  6. /**
  7. * Returns HTML for a single local action link.
  8. *
  9. * @param array $variables
  10. * An associative array containing:
  11. * - element: A render element containing:
  12. * - #link: A menu link array with 'title', 'href', and 'localized_options'
  13. * keys.
  14. *
  15. * @return string
  16. * The constructed HTML.
  17. *
  18. * @see theme_menu_local_action()
  19. *
  20. * @ingroup theme_functions
  21. */
  22. function bootstrap_menu_local_action(array $variables) {
  23. $link = $variables['element']['#link'];
  24. $options = isset($link['localized_options']) ? $link['localized_options'] : array();
  25. // Filter the title if the "html" is set, otherwise l() will automatically
  26. // sanitize using check_plain(), so no need to call that here.
  27. $title = empty($options['html']) ? filter_xss_admin($link['title']) : $link['title'];
  28. $icon = _bootstrap_iconize_text($title);
  29. $href = !empty($link['href']) ? $link['href'] : FALSE;
  30. // Format the action link.
  31. if ($href) {
  32. // Turn link into a mini-button and colorize based on title.
  33. if ($class = _bootstrap_colorize_text($title)) {
  34. if (!isset($options['attributes']['class'])) {
  35. $options['attributes']['class'] = array();
  36. }
  37. $string = is_string($options['attributes']['class']);
  38. if ($string) {
  39. $options['attributes']['class'] = explode(' ', $options['attributes']['class']);
  40. }
  41. $options['attributes']['class'][] = 'btn';
  42. $options['attributes']['class'][] = 'btn-xs';
  43. $options['attributes']['class'][] = 'btn-' . $class;
  44. if ($string) {
  45. $options['attributes']['class'] = implode(' ', $options['attributes']['class']);
  46. }
  47. }
  48. // Force HTML so we can render any icon that may have been added.
  49. $options['html'] = !empty($options['html']) || !empty($icon) ? TRUE : FALSE;
  50. }
  51. return $href ? l($icon . $title, $href, $options) : $icon . $title;
  52. }