function hosting_signup_thanks in Hosting 6.2
Same name and namespace in other branches
- 5 signup/hosting_signup.module \hosting_signup_thanks()
- 7.4 signup/hosting_signup.module \hosting_signup_thanks()
- 7.3 signup/hosting_signup.module \hosting_signup_thanks()
Thank you page callback
1 string reference to 'hosting_signup_thanks'
- hosting_signup_menu in signup/
hosting_signup.module - Implementation of hook_menu
File
- signup/
hosting_signup.module, line 36 - Provides a signup form that can be run on remote sites
Code
function hosting_signup_thanks($url = '', $email = '', $name = '') {
return t("<h3>Thank you @name</h3>\n Your site (@url) has been requested, and the moment it is ready you will receive a mail at @email\n with instructions on how to log into it.", array(
"@name" => $name,
"@url" => $url,
"@email" => $email,
));
}