button.func.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for bootstrap_button().
  5. */
  6. /**
  7. * Returns HTML for a button form element.
  8. *
  9. * @param array $variables
  10. * An associative array containing:
  11. * - element: An associative array containing the properties of the element.
  12. * Properties used: #attributes, #button_type, #name, #value.
  13. *
  14. * @return string
  15. * The constructed HTML.
  16. *
  17. * @see theme_button()
  18. *
  19. * @ingroup theme_functions
  20. */
  21. function bootstrap_button(array $variables) {
  22. $element = $variables['element'];
  23. $text = $element['#value'];
  24. // Allow button text to be appear hidden.
  25. // @see https://www.drupal.org/node/2327437
  26. if (!empty($element['#hide_text']) || $element['#icon_position'] === 'icon_only') {
  27. $text = '<span class="sr-only">' . $text . '</span>';
  28. }
  29. // Add icons before or after the value.
  30. // @see https://www.drupal.org/node/2219965
  31. if (!empty($element['#icon']) && ($icon = render($element['#icon']))) {
  32. // Add icon position class.
  33. _bootstrap_add_class('icon-' . drupal_html_class($element['#icon_position'] === 'icon_only' ? 'only' : $element['#icon_position']), $element);
  34. if ($element['#icon_position'] === 'after') {
  35. $text .= ' ' . $icon;
  36. }
  37. else {
  38. $text = $icon . ' ' . $text;
  39. }
  40. }
  41. // This line break adds inherent margin between multiple buttons.
  42. return '<button' . drupal_attributes($element['#attributes']) . '>' . filter_xss_admin($text) . "</button>\n";
  43. }