You are here

function _webform_display_date in Webform 7.4

Same name and namespace in other branches
  1. 6.3 components/date.inc \_webform_display_date()
  2. 7.3 components/date.inc \_webform_display_date()

Implements _webform_display_component().

File

components/date.inc, line 486
Webform module date component.

Code

function _webform_display_date($component, $value, $format = 'html', $submission = array()) {
  $value = webform_date_array(isset($value[0]) ? $value[0] : '', 'date');
  return array(
    '#title' => $component['name'],
    '#title_display' => $component['extra']['title_display'] ? $component['extra']['title_display'] : 'before',
    '#weight' => $component['weight'],
    '#theme' => 'webform_display_date',
    '#theme_wrappers' => $format == 'html' ? array(
      'webform_element',
    ) : array(
      'webform_element_text',
    ),
    '#format' => $format,
    '#exclude' => $component['extra']['exclude'],
    '#value' => $value,
    '#translatable' => array(
      'title',
    ),
  );
}