You are here

function signup_current_user_signup_page in Signup 7

Page callback for displaying a signup form.

1 string reference to 'signup_current_user_signup_page'
signup_menu in ./signup.module
Implements hook_menu().

File

./signup.module, line 551
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_current_user_signup_page($node) {

  // TODO: This probably shouldn't be here.
  drupal_set_title($node->title);
  return _signup_current_user_signup($node, 'tab');
}