function hosting_alias_help in Hostmaster (Aegir) 6
Implementation of hook_help().
File
- modules/
hosting/ alias/ hosting_alias.module, line 37 - Allow sites to have domain aliases that they can be accessed with.
Code
function hosting_alias_help($path, $arg) {
switch ($path) {
case 'admin/hosting/aliases':
$output = t('Site aliases allow you to let sites be available through multiple domain addresses.<br /> The most common use of this functionality is to provide automatic aliasing for www.mysite.com and mysite.com variants of the domain name.<br /> ');
$output .= t('This module will also allow you to provide a "temporary url" that sites will always be accessible from, in case of DNS problems.<br />');
$output .= t('Settings made here do not take effect automatically for existing sites.<br />');
break;
}
return $output;
}