You are here

function signup_close_signups_form in Signup 5

1 string reference to 'signup_close_signups_form'
signup_user_signups_form in ./signup.module
Prints the signup details for a single node when the signups tab is clicked

File

./signup.module, line 1213

Code

function signup_close_signups_form($nid) {
  $form['nid'] = array(
    '#type' => 'value',
    '#value' => $nid,
  );
  $form['submit'] = array(
    '#type' => 'submit',
    '#value' => t('Close Signups'),
  );
  return $form;
}