You are here

function theme_signup_email_token_custom_data in Signup 5

Same name and namespace in other branches
  1. 5.2 signup.module \theme_signup_email_token_custom_data()
  2. 6.2 theme/email.inc \theme_signup_email_token_custom_data()
  3. 6 theme/email.inc \theme_signup_email_token_custom_data()
  4. 7 theme/email.inc \theme_signup_email_token_custom_data()

Returns the value to use for the %info email token for custom signup data.

Parameters

$signup_data: Array of custom data for a particular signup.

See also

theme_signup_user_form()

theme_signup_custom_data_email()

2 theme calls to theme_signup_email_token_custom_data()
signup_cron in ./signup.module
Implementation of hook_cron().
signup_sign_up_user in ./signup.module
Signs up a user to a node.

File

./signup.module, line 1391

Code

function theme_signup_email_token_custom_data($signup_data) {
  return t('SIGNUP INFORMATION') . "\n\r" . theme('signup_custom_data_email', $signup_data);
}