function signup_form_cancel_submit in Signup 5.2
Same name and namespace in other branches
- 5 signup.module \signup_form_cancel_submit()
Submits the cancel signup form
Parameters
$form_id The ID of the form being submitted.:
$form_values The constructed form values array of the submitted form.:
Related topics
File
- ./
signup.module, line 557 - The Signup module (http://drupal.org/project/signup) manages replies to nodes. In particular, it's good for event management. Signup supports sending reminder emails and automatically closing signups for nodes with a start time, via the Event…
Code
function signup_form_cancel_submit($form_id, $form_values) {
signup_cancel_signup($form_values['uid'], $form_values['nid'], $form_values['signup_anon_mail']);
}