You are here

function date_tools_change_type_form_submit in Date 7.2

Same name and namespace in other branches
  1. 8 date_tools/date_tools.change_type.inc \date_tools_change_type_form_submit()
  2. 6.2 date_tools/date_tools.change_type.inc \date_tools_change_type_form_submit()
  3. 7.3 date_tools/date_tools.change_type.inc \date_tools_change_type_form_submit()
  4. 7 date_tools/date_tools.change_type.inc \date_tools_change_type_form_submit()

Form submission handler for date_tools_change_type_form().

See also

date_tools_change_type_form_validate()

File

date_tools/date_tools.change_type.inc, line 82
A form to change the type of date used in date fields.

Code

function date_tools_change_type_form_submit($form, &$form_state) {
  $field_name = $form_state['values']['date_field'];
  $new_type = $form_state['values']['type'];
  $field = content_fields($field_name);
  $old_type = $field['type'];
  if ($new_type == $old_type) {
    return;
  }
  $db_info = content_database_info($field);
  $table = $db_info['table'];
  $columns = $db_info['columns'];
  $labels = array();
  foreach (date_field_info() as $type => $info) {
    $labels[$type] = $info['label'];
  }

  // Is there any data in this field? If not, we can skip some steps.
  $has_data = db_query("SELECT COUNT(*) FROM {" . $table . "}")
    ->fetchField();

  // Create a backup copy of the original values. The values are going to get
  // corrupted when we change the column type.
  if ($has_data) {
    $temp_table = $table . '_temp';
    db_query("CREATE TABLE {" . $temp_table . "} SELECT * FROM {" . $table . "}");
  }

  // Change the field definition to the new type.
  $field['type'] = $new_type;
  require_once './' . drupal_get_path('module', 'content') . '/includes/content.crud.inc';
  content_field_instance_update($field, FALSE);
  content_clear_type_cache();

  // If there's no data to update, we're finished.
  if (!$has_data) {
    drupal_set_message(t('The field @field_name has been changed from @old_type to @new_type.', array(
      '@field_name' => $field['widget']['label'],
      '@old_type' => $labels[$old_type],
      '@new_type' => $labels[$new_type],
    )));
    return;
  }

  // Replace old values with modified values, massaging the original values as
  // necessary for the new type.
  require_once './' . drupal_get_path('module', 'date_api') . '/date_api_sql.inc';
  $date_handler = new date_sql_handler();
  $date_handler->granularity = $field['granularity'];
  $date_handler->date_type = $old_type;
  $new_columns = array();
  $old_columns = array(
    'nid',
    'vid',
  );
  $new_columns[] = $temp_table . '.nid AS nid';
  $new_columns[] = $temp_table . '.vid AS vid';
  if ($field->multiple) {
    $new_columns[] = $temp_table . '.delta AS delta';
    $old_columns[] = 'delta';
  }
  foreach ($columns as $column => $info) {
    if ($column != 'value' && $column != 'value2') {
      continue;
    }
    $old_columns[] = $info['column'];
    $db_field = $date_handler
      ->sql_field($temp_table . '.' . $info['column'], 0);
    switch ($old_type) {
      case 'date':
        switch ($new_type) {
          case 'datestamp':
            $new_columns[] = $date_handler
              ->sql_format('U', $db_field) . ' AS ' . $info['column'];
            break;
          case 'datetime':
            $new_columns[] = $date_handler
              ->sql_format('Y-m-d H:i:s', $db_field) . ' AS ' . $info['column'];
            break;
        }
        break;
      case 'datestamp':
        switch ($new_type) {
          case 'date':
            $new_columns[] = $date_handler
              ->sql_format('Y-m-d/TH:i:s', $db_field) . ' AS ' . $info['column'];
            break;
          case 'datetime':
            $new_columns[] = $date_handler
              ->sql_format('Y-m-d H:i:s', $db_field) . ' AS ' . $info['column'];
            break;
        }
        break;
      case 'datetime':
        switch ($new_type) {
          case 'date':
            $new_columns[] = $date_handler
              ->sql_format('Y-m-d/TH:i:s', $db_field) . ' AS ' . $info['column'];
            break;
          case 'datestamp':
            $new_columns[] = $date_handler
              ->sql_format('U', $db_field) . ' AS ' . $info['column'];
            break;
        }
        break;
    }
  }

  // Make sure database timezone is set to UTC.
  $date_handler
    ->set_db_timezone();

  // Make the replacement.
  $sql = 'REPLACE INTO {' . $table . '} (' . implode(', ', $old_columns) . ') ' . ' SELECT ' . implode(', ', $new_columns) . ' FROM {' . $temp_table . '}';
  db_query($sql);
  db_query("DROP TABLE {" . $temp_table . "}");
  drupal_set_message(t('The field @field_name has been changed from @old_type to @new_type.', array(
    '@field_name' => $field['widget']['label'],
    '@old_type' => $labels[$old_type],
    '@new_type' => $labels[$new_type],
  )));
}