function signup_user_cancel_form in Signup 5
Same name and namespace in other branches
- 5.2 signup.module \signup_user_cancel_form()
1 string reference to 'signup_user_cancel_form'
- signup_forms in ./
signup.module - Implementation of hook_forms().
File
- ./
signup.module, line 1242
Code
function signup_user_cancel_form($nid, $uid, $anon_mail) {
$form['#base'] = 'signup_form_cancel';
$form['nid'] = array(
'#type' => 'value',
'#value' => $nid,
);
$form['uid'] = array(
'#type' => 'value',
'#value' => $uid,
);
$form['signup_anon_mail'] = array(
'#type' => 'value',
'#value' => $anon_mail,
);
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Cancel signup'),
);
return $form;
}