domain_alias_help_text()Help text for the form.
domain_alias/domain_alias.admin.inc, line 309
<?php
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;
}
?>