You are here

function sendinblue_signup_signup_delete_form in SendinBlue 7.2

Same name and namespace in other branches
  1. 7 includes/sendinblue_signup.admin.inc \sendinblue_signup_signup_delete_form()

Signup deletion form.

1 string reference to 'sendinblue_signup_signup_delete_form'
sendinblue_menu in ./sendinblue.module
Implements hook_menu().

File

includes/sendinblue_signup.admin.inc, line 384
Sendinblue_signup module admin settings.

Code

function sendinblue_signup_signup_delete_form($form, &$form_state, $signup) {
  $form_state['signup'] = $signup;
  return confirm_form($form, t('Are you sure you want to delete the signup form %name?', array(
    '%name' => $signup
      ->label(),
  )), 'admin/config/system/sendinblue/signup/manage/' . $signup
    ->identifier(), t('This action cannot be undone.'), t('Delete Signup form'));
}