function contact_admin_delete_submit in Drupal 4
Same name and namespace in other branches
- 5 modules/contact/contact.module \contact_admin_delete_submit()
- 6 modules/contact/contact.admin.inc \contact_admin_delete_submit()
Process category delete form submission.
File
- modules/
contact.module, line 262 - Enables the use of personal and site-wide contact forms.
Code
function contact_admin_delete_submit($form_id, $form_values) {
db_query("DELETE FROM {contact} WHERE cid = %d", arg(4));
drupal_set_message(t('Category %category has been deleted.', array(
'%category' => theme('placeholder', $form_values['category']),
)));
watchdog('mail', t('Contact form: category %category deleted.', array(
'%category' => theme('placeholder', $form_values['category']),
)), WATCHDOG_NOTICE);
return 'admin/contact';
}