first commit
[step2_drupal.git] / signup / includes / signup_cancel_form.inc
blobe4852637cbb7854b1e9f0eedc6100547c9da8084
1 <?php
2 // $Id: signup_cancel_form.inc,v 1.1.2.1 2008/12/19 01:00:35 dww Exp $
5 /**
6  * @file
7  * Code for the signup cancel form.
8  */
10 /**
11  * Submit handler for the cancel signup form.
12  *
13  * @param $form
14  *   The form being submitted.
15  * @param $form_state
16  *   The state of the submitted form, including the values.
17  */
18 function signup_cancel_form_submit($form, &$form_state) {
19   signup_cancel_signup($form_state['values']['sid']);
22 /**
23  * Form builder for the cancel signup form.
24  *
25  * @param $form_state
26  *   The form state from the FormAPI.
27  * @param $sid
28  *   The signup ID (sid) to cancel (primary key of the {signup_log} table).
29  */
30 function signup_cancel_form(&$form_state, $sid) {
31   $form['sid'] = array('#type' => 'value', '#value' => $sid);
32   $form['submit'] = array('#type' => 'submit', '#value' => t('Cancel signup'));
33   return $form;