function popup_announcement_delete_confirm in Pop-up announcement 7
Form constructor for the popup announcement deletion confirmation form.
1 string reference to 'popup_announcement_delete_confirm'
- popup_announcement_menu in ./
popup_announcement.module - Implements hook_menu().
File
- ./
popup_announcement.admin.inc, line 103
Code
function popup_announcement_delete_confirm($form, &$form_state, $bid) {
$form['bid'] = array(
'#type' => 'value',
'#value' => $bid,
);
return confirm_form($form, t('Are you sure you want to delete this popup announcement?'), 'admin/config/popup_announcement/list', t('This action cannot be undone.'), t('Delete'), t('Cancel'));
}