You are here

function signup_extra_tokens in Signup 5.2

Return an array of extra email tokens supported by the given node.

1 call to signup_extra_tokens()
signup_broadcast_form in ./signup.module
Form builder for the signup broadcast form.

File

./signup.module, line 2688
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_extra_tokens($node) {
  $scheduler = _signup_get_node_scheduler($node);
  return $scheduler == 'none' ? array() : array(
    '%node_start_time',
  );
}