button.vars.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for "button" theme hook [pre]process functions.
  5. */
  6. /**
  7. * Pre-processes variables for the "button" theme hook.
  8. *
  9. * See theme function for list of available variables.
  10. *
  11. * @param array $variables
  12. * An associative array of variables, passed by reference.
  13. *
  14. * @see bootstrap_button()
  15. * @see theme_button()
  16. *
  17. * @ingroup theme_preprocess
  18. */
  19. function bootstrap_preprocess_button(array &$variables) {
  20. $element = &$variables['element'];
  21. // Drupal buttons should be of type 'submit'.
  22. // @see https://www.drupal.org/node/2540452
  23. $element['#attributes']['type'] = 'submit';
  24. // Set the element's other attributes.
  25. element_set_attributes($element, array('id', 'name', 'value'));
  26. // Add the base Bootstrap button class.
  27. $element['#attributes']['class'][] = 'btn';
  28. // Add button size, if necessary.
  29. if ($size = bootstrap_setting('button_size')) {
  30. $element['#attributes']['class'][] = $size;
  31. }
  32. // Colorize button.
  33. _bootstrap_colorize_button($element);
  34. // Iconize button.
  35. _bootstrap_iconize_button($element);
  36. // Add in the button type class.
  37. $element['#attributes']['class'][] = 'form-' . $element['#button_type'];
  38. // Ensure that all classes are unique, no need for duplicates.
  39. $element['#attributes']['class'] = array_unique($element['#attributes']['class']);
  40. }