function theme_date

7.x form.inc theme_date($variables)
6.x form.inc theme_date($element)

Returns HTML for a date selection form element.

Parameters

$variables: An associative array containing:

  • element: An associative array containing the properties of the element. Properties used: #title, #value, #options, #description, #required, #attributes.

Related topics

1 theme call to theme_date()
system_element_info in drupal-7.x/modules/system/system.module
Implements hook_element_info().

File

drupal-7.x/includes/form.inc, line 2912
Functions for form and batch generation and processing.

Code

function theme_date($variables) {
  $element = $variables['element'];

  $attributes = array();
  if (isset($element['#id'])) {
    $attributes['id'] = $element['#id'];
  }
  if (!empty($element['#attributes']['class'])) {
    $attributes['class'] = (array) $element['#attributes']['class'];
  }
  $attributes['class'][] = 'container-inline';

  return '<div' . drupal_attributes($attributes) . '>' . drupal_render_children($element) . '</div>';
}