function theme_signup_email_token_custom_data in Signup 5.2
Same name and namespace in other branches
- 5 signup.module \theme_signup_email_token_custom_data()
- 6.2 theme/email.inc \theme_signup_email_token_custom_data()
- 6 theme/email.inc \theme_signup_email_token_custom_data()
- 7 theme/email.inc \theme_signup_email_token_custom_data()
Return the value for the %user_signup_info email token for custom signup data.
Parameters
$signup_data: Array of custom data for a particular signup.
See also
theme_signup_custom_data_email()
1 theme call to theme_signup_email_token_custom_data()
- _signup_get_email_tokens in ./
signup.module - Helper function that returns an array of tokens for signup emails.
File
- ./
signup.module, line 2450 - 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 theme_signup_email_token_custom_data($signup_data) {
return t('SIGNUP INFORMATION') . "\n\r" . theme('signup_custom_data_email', $signup_data);
}