You are here

function domain_theme_switch_help in Domain Theme Switch 8

Implements hook_help().

File

./domain_theme_switch.module, line 13
Domain theme Switcher.

Code

function domain_theme_switch_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'domain_theme_switch.settings':
      $output = t('<p>Find the list of domains and select the theme against each domain.
          You may select the theme corresponding to each domain and if you leave
          them blank then default theme will load.</p>');
      return $output;
  }
}