You are here

function weather_es_delete_form_submit in Weather_es 7

Same name and namespace in other branches
  1. 6.3 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 369

Code

function weather_es_delete_form_submit($form, &$form_state) {

  // Delete the city
  db_delete('weather_es_data')
    ->condition('cit_cod', $form_state['values']['cit_cod'])
    ->execute();
  drupal_set_message(t('The location has been deleted.'));
  $form_state['redirect'] = _weather_es_redirect($form_state['values']['wid']);
}