function webform_update_7313 in Webform 7.3
Same name and namespace in other branches
- 7.4 webform.install \webform_update_7313()
Convert the Date component start and end year options to start and end date.
File
- ./
webform.install, line 647 - Webform module install/schema hooks.
Code
function webform_update_7313() {
$result = db_select('webform_component', 'wc', array(
'fetch' => PDO::FETCH_ASSOC,
))
->fields('wc')
->condition('type', 'date')
->execute();
foreach ($result as $component) {
$component['extra'] = unserialize($component['extra']);
if (!isset($component['extra']['start_date']) && !isset($component['end_date'])) {
foreach (array(
'year_start' => 'start_date',
'year_end' => 'end_date',
) as $key => $replacement) {
$value = isset($component['extra'][$key]) ? trim($component['extra'][$key]) : '';
// Relative years.
if (preg_match('/[-+][ ]*[0-9]+/', $value)) {
$component['extra'][$replacement] = $value == 1 ? $value . ' year' : $value . ' years';
}
elseif (is_numeric($value)) {
$component['extra'][$replacement] = 'Dec 31 ' . $value;
}
unset($component['extra'][$key]);
}
$component['extra'] = serialize($component['extra']);
drupal_write_record('webform_component', $component, array(
'nid',
'cid',
));
}
}
}