function simplenews_confirm_removal_form in Simplenews 5
Same name and namespace in other branches
- 6.2 includes/simplenews.subscription.inc \simplenews_confirm_removal_form()
- 6 simplenews.subscription.inc \simplenews_confirm_removal_form()
- 7.2 includes/simplenews.subscription.inc \simplenews_confirm_removal_form()
- 7 includes/simplenews.subscription.inc \simplenews_confirm_removal_form()
Generate the confirm remove form.
1 string reference to 'simplenews_confirm_removal_form'
- simplenews_confirm_subscription in ./
simplenews.module - Menu callback; confirm the user's (un)subscription request when they click on the confirm link in the e-mail footer.
File
- ./
simplenews.module, line 2666
Code
function simplenews_confirm_removal_form($mail, $newsletter) {
$form = array();
$form['question'] = array(
'#value' => '<p>' . t('Are you sure you want to remove %user from the %newsletter subscription list?', array(
'%user' => $mail,
'%newsletter' => $newsletter->name,
)) . "<p>\n",
);
$form['mail'] = array(
'#type' => 'value',
'#value' => $mail,
);
$form['newsletter'] = array(
'#type' => 'value',
'#value' => $newsletter,
);
return confirm_form($form, t('Confirm unsubscription'), '', t('This action will only remove you from the newsletter subscription list. If you are registered at our site, your account information will remain unchanged.'), t('Unsubscribe'), t('Cancel'));
}