textfield.func.php 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for bootstrap_textfield().
  5. */
  6. /**
  7. * Returns HTML for a textfield 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: #title, #value, #description, #size, #maxlength,
  13. * #required, #attributes, #autocomplete_path.
  14. *
  15. * @return string
  16. * The constructed HTML.
  17. *
  18. * @see theme_textfield()
  19. *
  20. * @ingroup theme_functions
  21. */
  22. function bootstrap_textfield(array $variables) {
  23. $element = $variables['element'];
  24. $element['#attributes']['type'] = 'text';
  25. element_set_attributes($element, array(
  26. 'id',
  27. 'name',
  28. 'value',
  29. 'size',
  30. 'maxlength',
  31. ));
  32. _form_set_class($element, array('form-text'));
  33. $output = '<input' . drupal_attributes($element['#attributes']) . ' />';
  34. if ($element['#autocomplete_path'] && !empty($element['#autocomplete_input'])) {
  35. drupal_add_library('system', 'drupal.autocomplete');
  36. $element['#attributes']['class'][] = 'form-autocomplete';
  37. // Append a hidden autocomplete element.
  38. $autocomplete = array(
  39. '#type' => 'hidden',
  40. '#value' => $element['#autocomplete_input']['#url_value'],
  41. '#attributes' => array(
  42. 'class' => array('autocomplete'),
  43. 'disabled' => 'disabled',
  44. 'id' => $element['#autocomplete_input']['#id'],
  45. ),
  46. );
  47. $output .= drupal_render($autocomplete);
  48. // Append icon for autocomplete "throbber" or use core's default throbber
  49. // whose background image must be set here because sites may not be
  50. // at the root of the domain (ie: /) and this value cannot be set via CSS.
  51. if (!isset($element['#autocomplete_icon'])) {
  52. $element['#autocomplete_icon'] = _bootstrap_icon('refresh', '<span class="autocomplete-throbber" style="background-image:url(' . file_create_url('misc/throbber.gif') . ')"></span>');
  53. }
  54. // Only add an icon if there is one.
  55. if ($element['#autocomplete_icon']) {
  56. $output .= '<span class="input-group-addon">' . $element['#autocomplete_icon'] . '</span>';
  57. // Wrap entire element in a input group if not already in one.
  58. if (!isset($element['#input_group']) && !isset($element['#input_group_button'])) {
  59. $input_group_attributes = isset($element['#input_group_attributes']) ? $element['#input_group_attributes'] : array();
  60. if (!isset($input_group_attributes['class'])) {
  61. $input_group_attributes['class'] = array();
  62. }
  63. if (!in_array('input-group', $input_group_attributes['class'])) {
  64. $input_group_attributes['class'][] = 'input-group';
  65. }
  66. $output = '<div' . drupal_attributes($input_group_attributes) . '>' . $output . '</div>';
  67. }
  68. }
  69. }
  70. return $output;
  71. }