You are here

function hosting_alias_help in Hosting 5

Same name and namespace in other branches
  1. 6.2 alias/hosting_alias.module \hosting_alias_help()
  2. 7.4 alias/hosting_alias.module \hosting_alias_help()
  3. 7.3 alias/hosting_alias.module \hosting_alias_help()

File

alias/hosting_alias.module, line 22

Code

function hosting_alias_help($path) {
  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 />');
      break;
  }
  return $output;
}