You are here

function _webform_table_date in Webform 6.3

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

Implements _webform_table_component().

File

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

Code

function _webform_table_date($component, $value) {
  if ($value[0]) {
    $timestamp = webform_strtotime($value[0]);
    $format = webform_date_format('short');
    return format_date($timestamp, 'custom', $format, 0);
  }
  else {
    return '';
  }
}