form-element.func.php 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for bootstrap_form_element().
  5. */
  6. /* @noinspection PhpDocMissingThrowsInspection */
  7. /**
  8. * Returns HTML for a form element.
  9. *
  10. * Each form element is wrapped in a DIV container having the following CSS
  11. * classes:
  12. * - form-item: Generic for all form elements.
  13. * - form-type-#type: The internal element #type.
  14. * - form-item-#name: The internal form element #name (usually derived from the
  15. * $form structure and set via form_builder()).
  16. * - form-disabled: Only set if the form element is #disabled.
  17. *
  18. * In addition to the element itself, the DIV contains a label for the element
  19. * based on the optional #title_display property, and an optional #description.
  20. *
  21. * The optional #title_display property can have these values:
  22. * - before: The label is output before the element. This is the default.
  23. * The label includes the #title and the required marker, if #required.
  24. * - after: The label is output after the element. For example, this is used
  25. * for radio and checkbox #type elements as set in system_element_info().
  26. * If the #title is empty but the field is #required, the label will
  27. * contain only the required marker.
  28. * - invisible: Labels are critical for screen readers to enable them to
  29. * properly navigate through forms but can be visually distracting. This
  30. * property hides the label for everyone except screen readers.
  31. * - attribute: Set the title attribute on the element to create a tooltip
  32. * but output no label element. This is supported only for checkboxes
  33. * and radios in form_pre_render_conditional_form_element(). It is used
  34. * where a visual label is not needed, such as a table of checkboxes where
  35. * the row and column provide the context. The tooltip will include the
  36. * title and required marker.
  37. *
  38. * If the #title property is not set, then the label and any required marker
  39. * will not be output, regardless of the #title_display or #required values.
  40. * This can be useful in cases such as the password_confirm element, which
  41. * creates children elements that have their own labels and required markers,
  42. * but the parent element should have neither. Use this carefully because a
  43. * field without an associated label can cause accessibility challenges.
  44. *
  45. * @param array $variables
  46. * An associative array containing:
  47. * - element: An associative array containing the properties of the element.
  48. * Properties used: #title, #title_display, #description, #id, #required,
  49. * #children, #type, #name.
  50. *
  51. * @return string
  52. * The constructed HTML.
  53. *
  54. * @see theme_form_element()
  55. *
  56. * @ingroup theme_functions
  57. */
  58. function bootstrap_form_element(array &$variables) {
  59. $element = &$variables['element'];
  60. $name = !empty($element['#name']) ? $element['#name'] : FALSE;
  61. $type = !empty($element['#type']) ? $element['#type'] : FALSE;
  62. $wrapper = isset($element['#form_element_wrapper']) ? !!$element['#form_element_wrapper'] : TRUE;
  63. $form_group = isset($element['#form_group']) ? !!$element['#form_group'] : $wrapper && $type && $type !== 'hidden';
  64. $checkbox = $type && $type === 'checkbox';
  65. $radio = $type && $type === 'radio';
  66. // Create an attributes array for the wrapping container.
  67. if (empty($element['#wrapper_attributes'])) {
  68. $element['#wrapper_attributes'] = array();
  69. }
  70. $wrapper_attributes = &$element['#wrapper_attributes'];
  71. // This function is invoked as theme wrapper, but the rendered form element
  72. // may not necessarily have been processed by form_builder().
  73. $element += array(
  74. '#title_display' => 'before',
  75. );
  76. // Add wrapper ID for 'item' type.
  77. if ($type && $type === 'item' && isset($element['#markup']) && !empty($element['#id'])) {
  78. $wrapper_attributes['id'] = $element['#id'];
  79. }
  80. // Check for errors and set correct error class.
  81. if ((isset($element['#parents']) && form_get_error($element) !== NULL) || (!empty($element['#required']) && (!isset($element['#value']) || $element['#value'] === '') && bootstrap_setting('forms_required_has_error'))) {
  82. $wrapper_attributes['class'][] = 'has-error';
  83. }
  84. // Add necessary classes to wrapper container.
  85. $wrapper_attributes['class'][] = 'form-item';
  86. if ($name) {
  87. $wrapper_attributes['class'][] = 'form-item-' . drupal_html_class($name);
  88. }
  89. if ($type) {
  90. $wrapper_attributes['class'][] = 'form-type-' . drupal_html_class($type);
  91. }
  92. if (!empty($element['#attributes']['disabled'])) {
  93. $wrapper_attributes['class'][] = 'form-disabled';
  94. }
  95. if (!empty($element['#autocomplete_path']) && drupal_valid_path($element['#autocomplete_path'])) {
  96. $wrapper_attributes['class'][] = 'form-autocomplete';
  97. }
  98. // Checkboxes and radios do no receive the 'form-group' class, instead they
  99. // simply have their own classes.
  100. if ($checkbox || $radio) {
  101. $wrapper_attributes['class'][] = drupal_html_class($type);
  102. }
  103. elseif ($form_group) {
  104. $wrapper_attributes['class'][] = 'form-group';
  105. }
  106. // Create a render array for the form element.
  107. $build = array(
  108. '#form_group' => $form_group,
  109. '#attributes' => $wrapper_attributes,
  110. );
  111. if ($wrapper) {
  112. $build['#theme_wrappers'] = array('container__form_element');
  113. // Render the label for the form element.
  114. /* @noinspection PhpUnhandledExceptionInspection */
  115. $build['label'] = array(
  116. '#markup' => theme('form_element_label', $variables),
  117. '#weight' => $element['#title_display'] === 'before' ? 0 : 2,
  118. );
  119. }
  120. // Checkboxes and radios render the input element inside the label. If the
  121. // element is neither of those, then the input element must be rendered here.
  122. if (!$checkbox && !$radio) {
  123. $prefix = isset($element['#field_prefix']) ? $element['#field_prefix'] : '';
  124. $suffix = isset($element['#field_suffix']) ? $element['#field_suffix'] : '';
  125. if ((!empty($prefix) || !empty($suffix)) && (!empty($element['#input_group']) || !empty($element['#input_group_button']))) {
  126. if (!empty($element['#field_prefix'])) {
  127. $prefix = '<span class="input-group-' . (!empty($element['#input_group_button']) ? 'btn' : 'addon') . '">' . $prefix . '</span>';
  128. }
  129. if (!empty($element['#field_suffix'])) {
  130. $suffix = '<span class="input-group-' . (!empty($element['#input_group_button']) ? 'btn' : 'addon') . '">' . $suffix . '</span>';
  131. }
  132. // Add a wrapping container around the elements.
  133. $input_group_attributes = &_bootstrap_get_attributes($element, 'input_group_attributes');
  134. $input_group_attributes['class'][] = 'input-group';
  135. $prefix = '<div' . drupal_attributes($input_group_attributes) . '>' . $prefix;
  136. $suffix .= '</div>';
  137. }
  138. // Build the form element.
  139. $build['element'] = array(
  140. '#markup' => $element['#children'],
  141. '#prefix' => !empty($prefix) ? $prefix : NULL,
  142. '#suffix' => !empty($suffix) ? $suffix : NULL,
  143. '#weight' => 1,
  144. );
  145. }
  146. // Construct the element's description markup.
  147. if (!empty($element['#description'])) {
  148. $build['description'] = array(
  149. '#type' => 'container',
  150. '#attributes' => array(
  151. 'class' => array('help-block'),
  152. ),
  153. '#weight' => isset($element['#description_display']) && $element['#description_display'] === 'before' ? 0 : 20,
  154. 0 => array('#markup' => filter_xss_admin($element['#description'])),
  155. );
  156. }
  157. // Render the form element build array.
  158. return drupal_render($build);
  159. }