function weather_es_confirm_delete_form_submit in Weather_es 6.2
Handle the deletion of a location
File
- ./
weather_es.module, line 363 - Shows weather data of Spain (by AEMET)
Code
function weather_es_confirm_delete_form_submit($form, &$form_state) {
// delete the entry
$sql = "DELETE FROM {weather_es_config} WHERE uid = %d AND cod_pro = %d AND cod_loc = %d";
db_query($sql, $form_state['values']['wuid'], substr($form_state['values']['cit_cod'], 0, 2), substr($form_state['values']['cit_cod'], 2, 4));
drupal_set_message(t('The location has been deleted.'));
$path = $form_state['values']['path'];
$form_state['redirect'] = $path;
}