You are here

function hosting_signup_thanks in Hostmaster (Aegir) 6

Thank you page callback

1 string reference to 'hosting_signup_thanks'
hosting_signup_menu in modules/hosting/signup/hosting_signup.module
Implementation of hook_menu

File

modules/hosting/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,
  ));
}