function domain_help in Domain Access 8
Implements hook_help().
File
- domain/
domain.module, line 57 - Defines a Domain concept for use with Drupal.
Code
function domain_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'domain.admin':
$output = t('<p>The following domains have been created for your site. The currently active domain
<strong>is shown in boldface</strong>. You may click on a domain to change the currently active domain.
</p>');
return $output;
}
}