You are here

function weather_es_delete_form_submit in Weather_es 6.3

Same name and namespace in other branches
  1. 7 weather_es.module \weather_es_delete_form_submit()

@author jmsirvent

1 string reference to 'weather_es_delete_form_submit'
weather_es_delete_form in ./weather_es.module
@author jmsirvent

File

./weather_es.module, line 341

Code

function weather_es_delete_form_submit($form, &$form_state) {

  // Delete the city
  $sql = "DELETE FROM {weather_es_data} WHERE cit_cod = %d";
  db_query($sql, $form_state['values']['cit_cod']);
  drupal_set_message(t('The location has been deleted.'));
  $form_state['redirect'] = _weather_es_redirect($form_state['values']['wid']);
}