function theme_signup_email_token_custom_data in Signup 5
Same name and namespace in other branches
- 5.2 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()
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_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);
}