You are here

function contact_save_message_delete_form in Contact Save 7

Message delete form.

1 string reference to 'contact_save_message_delete_form'
contact_save_menu in ./contact_save.module
Implements hook_menu().

File

includes/contact_save.admin.inc, line 69
Contact save module admin logic.

Code

function contact_save_message_delete_form($form, &$form_state, $id) {
  $form = array();
  $form['contact_save_message_delete']['id'] = array(
    '#type' => 'hidden',
    '#value' => $id,
  );
  $confirm_question = t('Are you sure you want to delete this item?');
  return confirm_form($form, $confirm_question, CONTACT_SAVE_MESSAGES_LIST_PATH, t('This action cannot be undone.'), t('Delete'), t('Cancel'));
}