date.func.php 917 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for bootstrap_date().
  5. */
  6. /**
  7. * Returns HTML for a date selection 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, #options, #description, #required,
  13. * #attributes.
  14. *
  15. * @return string
  16. * The constructed HTML.
  17. *
  18. * @see theme_date()
  19. *
  20. * @ingroup theme_functions
  21. */
  22. function bootstrap_date(array $variables) {
  23. $element = $variables['element'];
  24. $attributes = array();
  25. if (isset($element['#id'])) {
  26. $attributes['id'] = $element['#id'];
  27. }
  28. if (!empty($element['#attributes']['class'])) {
  29. $attributes['class'] = (array) $element['#attributes']['class'];
  30. }
  31. $attributes['class'][] = 'form-inline';
  32. return '<div' . drupal_attributes($attributes) . '>' . drupal_render_children($element) . '</div>';
  33. }