You are here

function signup_menu_load in Signup 6.2

Same name and namespace in other branches
  1. 6 signup.module \signup_menu_load()
  2. 7 signup.module \signup_menu_load()

Menu loader callback to load a project node.

File

./signup.module, line 533
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_menu_load($sid) {
  if (!is_numeric($sid)) {
    return FALSE;
  }
  $signup = signup_load_signup($sid);
  if (empty($signup)) {
    return FALSE;
  }
  return $signup;
}