You are here

function domain_alias_help_text in Domain Access 6.2

Same name and namespace in other branches
  1. 7.3 domain_alias/domain_alias.admin.inc \domain_alias_help_text()
  2. 7.2 domain_alias/domain_alias.admin.inc \domain_alias_help_text()

Help text for the form.

1 call to domain_alias_help_text()
domain_alias_form in domain_alias/domain_alias.admin.inc
FAPI for editing domain aliases

File

domain_alias/domain_alias.admin.inc, line 309
Administration functions for the domain_alias module.

Code

function domain_alias_help_text() {
  $output = t('<p>A domain alias is used to register multiple valid domain names to a single record within Domain Access.
    You may enter as many unique aliases per domain as you wish. </p>
    <p>You may specify a pattern for your domains by using <strong>*</strong> (asterisk) to match any number of random
    characters and <strong>?</strong> (question mark) to match exactly one random character.
    For example: <em>*.example.com</em> would match any HTTP request made to a subdomain of <em>example.com</em>
    to the domain record for <em>example.com</em>. NOTE: <em>Only one wildcard is allowed per alias.</em></p>');
  return $output;
}