'',
'form_key' => NULL,
'pid' => 0,
'weight' => 0,
'value' => '',
'mandatory' => 0,
'email' => 1,
'extra' => array(
'timezone' => 'user',
'year_start' => '-2',
'year_end' => '+2',
'year_textfield' => 0,
'datepicker' => 1,
'title_display' => 0,
'description' => '',
),
);
}
/**
* Implementation of _webform_theme_component().
*/
function _webform_theme_date() {
return array(
'webform_date' => array(
'arguments' => array('element' => NULL),
),
'webform_display_date' => array(
'arguments' => array('element' => NULL),
),
'webform_calendar' => array(
'arguments' => array('component' => NULL, 'calendar_classes' => NULL),
'template' => 'templates/webform-calendar',
),
);
}
/**
* Implementation of _webform_edit_component().
*/
function _webform_edit_date($component) {
$form = array();
$form['value'] = array(
'#type' => 'textfield',
'#title' => t('Default value'),
'#default_value' => $component['value'],
'#description' => t('The default value of the field.') . '
' . t('Accepts any date in any GNU Date Input Format. Strings such as today, +2 months, and Dec 9 2004 are all valid.'),
'#size' => 60,
'#maxlength' => 127,
'#weight' => 0,
);
$form['extra']['timezone'] = array(
'#type' => 'radios',
'#title' => t('Timezone'),
'#default_value' => empty($component['extra']['timezone']) ? 'user' : $component['extra']['timezone'],
'#description' => t('Adjust the default time value according to a specific timezone.'),
'#options' => array('user' => t('User timezone'), 'site' => t('Website timezone')),
'#weight' => 1,
'#access' => variable_get('configurable_timezones', 1) && module_exists('date_timezone'),
);
$form['display']['datepicker'] = array(
'#type' => 'checkbox',
'#title' => t('Enable popup calendar'),
'#default_value' => $component['extra']['datepicker'],
'#description' => t('Enable a JavaScript date picker next to the date field.'),
'#weight' => 2,
'#access' => function_exists('date_popup_load'),
'#parents' => array('extra', 'datepicker'),
);
$form['display']['year_textfield'] = array(
'#type' => 'checkbox',
'#title' => t('Use a textfield for year'),
'#default_value' => $component['extra']['year_textfield'],
'#description' => t('If checked, the generated date field will use a textfield for the year. Otherwise it will use a select list.'),
'#weight' => 5,
'#parents' => array('extra', 'year_textfield'),
);
$form['validation']['year_start'] = array(
'#type' => 'textfield',
'#title' => t('Start year'),
'#default_value' => $component['extra']['year_start'],
'#description' => t('The first year that is allowed to be entered. May be relative (i.e. -2 or +2) or simply the year (i.e. 1950).'),
'#size' => 10,
'#maxlength' => 4,
'#weight' => 3,
'#parents' => array('extra', 'year_start'),
);
$form['validation']['year_end'] = array(
'#type' => 'textfield',
'#title' => t('End year'),
'#default_value' => $component['extra']['year_end'],
'#description' => t('The last year that is allowed to be entered. May be relative (i.e. -2 or +2) or simply the year (i.e. 1950).'),
'#size' => 10,
'#maxlength' => 4,
'#weight' => 4,
'#parents' => array('extra', 'year_end'),
);
return $form;
}
/**
* Implementation of _webform_render_component().
*/
function _webform_render_date($component, $value = NULL, $filter = TRUE) {
$element = array(
'#title' => $filter ? _webform_filter_xss($component['name']) : $component['name'],
'#title_display' => $component['extra']['title_display'] ? $component['extra']['title_display'] : NULL,
'#weight' => $component['weight'],
'#type' => 'date',
'#description' => $filter ? _webform_filter_descriptions($component['extra']['description']) : $component['extra']['description'],
'#prefix' => '
',
'#suffix' => '
',
'#required' => $component['mandatory'],
'#year_start' => $component['extra']['year_start'],
'#year_end' => $component['extra']['year_end'],
'#process' => array('webform_expand_date'),
'#theme' => 'webform_date',
'#pre_render' => array('webform_element_title_display'),
'#element_validate' => array('webform_validate_date'),
'#webform_component' => $component,
);
if ($component['extra']['datepicker'] && function_exists('date_popup_load')) {
$element['#datepicker'] = TRUE;
}
if (isset($value[0]) && $value[0] !== '') {
$value = webform_date_array($value[0], 'date');
$element['#default_value'] = $value;
}
return $element;
}
/**
* Form API #process function for Webform date fields.
*/
function webform_expand_date($element) {
$component = $element['#webform_component'];
// Set defaults according to existing #default_value (set by Form API)
if (isset($element['#default_value']['month']) || isset($element['#default_value']['day']) || isset($element['#default_value']['year'])) {
$default_values = array(
'month' => $element['#default_value']['month'],
'day' => $element['#default_value']['day'],
'year' => $element['#default_value']['year'],
);
}
// Or, if none, use set the defaults of the component.
elseif (drupal_strlen($component['value']) > 0) {
$timezone = $component['extra']['timezone'] != 'user' ? NULL : 'user';
$default_values = webform_date_array(webform_strtodate('c', $component['value'], $timezone), 'date');
}
else {
$default_values = array(
'day' => NULL,
'month' => NULL,
'year' => NULL,
);
}
// Let Drupal do it's normal expansion.
$element = expand_date($element);
// Set default values.
foreach ($default_values as $type => $value) {
switch ($type) {
case 'month':
$none = t('Month');
break;
case 'day':
$none = t('Day');
break;
case 'year':
$none = t('Year');
break;
}
unset($element[$type]['#value']);
$element[$type]['#default_value'] = isset($default_values[$type]) ? $default_values[$type] : NULL;
$element[$type]['#options'] = array('' => $none) + $element[$type]['#options'];
}
// Convert relative dates to absolute ones.
foreach (array('year_start', 'year_end') as $start_end) {
$year = $element['#' . $start_end];
if (strpos($year, '-') === 0 || strpos($year, '+') === 0) {
$timezone = $component['extra']['timezone'] != 'user' ? NULL : 'user';
$element['#' . $start_end] = webform_strtodate('Y', $year . ' years', $timezone);
}
}
// Tweak the year field.
if ($component['extra']['year_textfield']) {
$element['year']['#type'] = 'textfield';
$element['year']['#size'] = 5;
$element['year']['#maxlength'] = 4;
unset($element['year']['#options']);
}
elseif (is_numeric($element['#year_start']) && is_numeric($element['#year_end'])) {
$element['year']['#options'] = array('' => t('Year')) + drupal_map_assoc(range($element['#year_start'], $element['#year_end']));
}
return $element;
}
/**
* Theme a webform date element.
*/
function theme_webform_date($element) {
$element['year']['#attributes']['class'] = 'year';
$element['month']['#attributes']['class'] = 'month';
$element['day']['#attributes']['class'] = 'day';
// Add error classes to all items within the element.
if (form_get_error($element)) {
$element['year']['#attributes']['class'] .= ' error';
$element['month']['#attributes']['class'] .= ' error';
$element['day']['#attributes']['class'] .= ' error';
}
$class = array('webform-container-inline');
// Add the JavaScript calendar if available (provided by Date module package).
if (!empty($element['#datepicker']) && function_exists('date_popup_load')) {
date_popup_load();
$class[] = 'webform-datepicker';
$calendar_class = array('webform-calendar');
if ($element['#year_start'] && is_numeric($element['#year_start'])) {
$calendar_class[] = 'webform-calendar-start-' . $element['#year_start'];
}
if ($element['#year_start'] && is_numeric($element['#year_end'])) {
$calendar_class[] = 'webform-calendar-end-' . $element['#year_end'];
}
$calendar_class[] ='webform-calendar-day-' . variable_get('date_first_day', 0);
$calendar = theme('webform_calendar', $element['#webform_component'], $calendar_class);
}
$output = '';
$output .= '';
foreach (element_children($element) as $key) {
$output .= drupal_render($element[$key]);
}
$output .= isset($calendar) ? $calendar : '';
$output .= '
';
return $output;
}
/**
* Element validation for Webform date fields.
*/
function webform_validate_date($element, $form_state) {
$component = $element['#webform_component'];
$form_key = $component['form_key'];
$name = $component['name'];
// Check if the user filled the required fields.
foreach (array('day', 'month', 'year') as $field_type) {
if (!is_numeric($element[$field_type]['#value']) && $element['#required']) {
form_error($element, t('!name field is required.', array('!name' => $name)));
return;
}
}
// Check for a valid date.
if ($element['month']['#value'] !== '' || $element['day']['#value'] !== '' || $element['year']['#value'] !== '') {
if (!checkdate((int)$element['month']['#value'], (int)$element['day']['#value'], (int)$element['year']['#value'])) {
form_error($element, t('Entered !name is not a valid date.', array('!name' => $name)));
return;
}
}
// Check the date is between allowed years.
if ($element['year']['#value'] !== '' && is_numeric($element['#year_start']) && is_numeric($element['#year_end'])) {
// Allow years to be in reverse order.
$start = $element['#year_start'] < $element['#year_end'] ? $element['#year_start'] : $element['#year_end'];
$end = $element['#year_start'] > $element['#year_end'] ? $element['#year_start'] : $element['#year_end'];
if ($element['year']['#value'] < $start || $element['year']['#value'] > $end) {
form_error($element['year'], t('The entered date needs to be between the years @start and @end.', array('@start' => $start, '@end' => $end)));
return;
}
}
}
/**
* Implementation of _webform_submit_component().
*/
function _webform_submit_date($component, $value) {
// Convert the date to an ISO 8601 format.
return ($value['year'] && $value['month'] && $value['day']) ? webform_date_string($value, 'date') : '';
}
/**
* Implementation of _webform_display_component().
*/
function _webform_display_date($component, $value, $format = 'html') {
$value = webform_date_array(isset($value[0]) ? $value[0] : '', 'date');
return array(
'#title' => $component['name'],
'#weight' => $component['weight'],
'#theme' => 'webform_display_date',
'#theme_wrappers' => $format == 'html' ? array('webform_element') : array('webform_element_text'),
'#post_render' => array('webform_element_wrapper'),
'#format' => $format,
'#value' => $value,
'#webform_component' => $component,
);
}
/**
* Format the text output for this component.
*/
function theme_webform_display_date($element) {
$output = ' ';
if ($element['#value']['year'] && $element['#value']['month'] && $element['#value']['day']) {
$timestamp = webform_strtotime($element['#value']['month'] . '/' . $element['#value']['day'] . '/' . $element['#value']['year']);
$format = webform_date_format('medium');
$output = format_date($timestamp, 'custom', $format, 0);
}
return $output;
}
/**
* Implementation of _webform_analysis_component().
*/
function _webform_analysis_date($component, $sids = array()) {
$placeholders = count($sids) ? array_fill(0, count($sids), "'%s'") : array();
$sidfilter = count($sids) ? " AND sid in (" . implode(",", $placeholders) . ")" : "";
$query = 'SELECT no,data ' .
' FROM {webform_submitted_data} ' .
' WHERE nid = %d ' .
' AND cid = %d ' . $sidfilter .
' ORDER BY sid ASC ';
$result = db_query($query, array_merge(array($component['nid'], $component['cid']), $sids));
$dates = array();
$submissions = 0;
while ($row = db_fetch_array($result)) {
$submissions++;
if ($row['data']) {
$dates[] = webform_date_array($row['data']);
}
}
// Display stats.
$nonblanks = count($dates);
$rows[0] = array(t('Left Blank'), ($submissions - $nonblanks));
$rows[1] = array(t('User entered value'), $nonblanks);
return $rows;
}
/**
* Implementation of _webform_table_component().
*/
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 '';
}
}
/**
* Implementation of _webform_csv_headers_component().
*/
function _webform_csv_headers_date($component, $export_options) {
$header = array();
$header[0] = '';
$header[1] = '';
$header[2] = $component['name'];
return $header;
}
/**
* Implementation of _webform_csv_data_component().
*/
function _webform_csv_data_date($component, $export_options, $value) {
if ($value[0]) {
$timestamp = webform_strtotime($value[0]);
$format = webform_date_format('short');
return format_date($timestamp, 'custom', $format, 0);
}
else {
return '';
}
}
/**
* Convert an ISO 8601 date or time into an array.
*
* This converst full format dates or times. Either a date or time may be
* provided, in which case only those portions will be returned. Dashes and
* colons must be used, never implied.
*
* Formats:
* Dates: YYYY-MM-DD
* Times: HH:MM:SS
* Datetimes: YYYY-MM-DDTHH:MM:SS
*
* @param $string
* An ISO 8601 date, time, or datetime.
* @param $type
* If wanting only specific fields back, specify either "date" or "time".
* Leaving empty will return an array with both date and time keys, even if
* some are empty. Returns an array with the following keys:
* - year
* - month
* - day
* - hour (in 24hr notation)
* - minute
* - second
*/
function webform_date_array($string, $type = NULL) {
$pattern = '/((\d{4}?)-(\d{2}?)-(\d{2}?))?(T?(\d{2}?):(\d{2}?):(\d{2}?))?/';
$matches = array();
preg_match($pattern, $string, $matches);
$matches += array_fill(0, 9, '');
$return = array();
// Check for a date string.
if ($type == 'date' || !isset($type)) {
$return['year'] = $matches[2] !== '' ? (int) $matches[2] : '';
$return['month'] = $matches[3] !== '' ? (int) $matches[3] : '';
$return['day'] = $matches[4] !== '' ? (int) $matches[4] : '';
}
// Check for a time string.
if ($type == 'time' || !isset($type)) {
$return['hour'] = $matches[6] !== '' ? (int) $matches[6] : '';
$return['minute'] = $matches[7] !== '' ? (int) $matches[7] : '';
$return['second'] = $matches[8] !== '' ? (int) $matches[8] : '';
}
return $return;
}
/**
* Convert an array of a date or time into an ISO 8601 compatible string.
*
* @param $array
* The array to convert to a date or time string.
* @param $type
* If wanting a specific string format back specify either "date" or "time".
* Otherwise a full ISO 8601 date and time string will be returned.
*/
function webform_date_string($array, $type = NULL) {
$string = '';
if ($type == 'date' || !isset($type)) {
$string .= empty($array['year']) ? '0000' : sprintf('%04d', $array['year']);
$string .= '-';
$string .= empty($array['month']) ? '00' : sprintf('%02d', $array['month']);
$string .= '-';
$string .= empty($array['day']) ? '00' : sprintf('%02d', $array['day']);
}
if (!isset($type)) {
$string .= 'T';
}
if ($type == 'time' || !isset($type)) {
$string .= empty($array['hour']) ? '00' : sprintf('%02d', $array['hour']);
$string .= ':';
$string .= empty($array['minute']) ? '00' : sprintf('%02d', $array['minute']);
$string .= ':';
$string .= empty($array['second']) ? '00' : sprintf('%02d', $array['second']);
}
return $string;
}
/**
* Get a date format according to the site settings.
*
* @param $size
* A choice of 'short', 'medium', or 'long' date formats.
*/
function webform_date_format($size = 'medium') {
// Format date according to site's given format.
$format = variable_get('date_format_' . $size, 'D, m/d/Y - H:i');
$time = 'aABgGhHisueIOPTZ';
$day_of_week = 'Dlw';
$special = ',-: ';
$date_format = trim($format, $time . $day_of_week . $special);
// Ensure that a day, month, and year value are present. Use a default
// format if all the values are not found.
if (!preg_match('/[dj]/', $date_format) || !preg_match('/[FmMn]/', $date_format) || !preg_match('/[oYy]/', $date_format)) {
$date_format = 'm/d/Y';
}
return $date_format;
}
/**
* Return a date in the format specied taking into consideration user timezones.
*/
function webform_strtodate($format, $string, $timezone_name = NULL) {
// Adjust the time based on the user or site timezone.
// The "timezone_name" variable is provided by DateAPI in Drupal 6.
if (variable_get('configurable_timezones', 1) && $timezone_name == 'user') {
$timezone_name = isset($GLOBALS['user']->timezone_name) ? $GLOBALS['user']->timezone_name : NULL;
}
elseif (empty($timezone_name) || $timezone_name == 'user') {
$timezone_name = variable_get('date_default_timezone_name', NULL);
}
if (!empty($timezone_name) && class_exists('DateTimeZone')) {
$timezone = new DateTimeZone($timezone_name);
$datetime = new DateTime($string, $timezone);
return $datetime->format($format);
}
else {
return date($format, strtotime($string));
}
}
/**
* Get a timestamp in GMT time, ensuring timezone accuracy.
*/
function webform_strtotime($date) {
$current_tz = date_default_timezone_get();
date_default_timezone_set('UTC');
$timestamp = strtotime($date);
date_default_timezone_set($current_tz);
return $timestamp;
}