You are here

function role_theme_switcher_help in Role Theme Switcher 8

Implements hook_help().

File

./role_theme_switcher.module, line 13
Contains role_theme_switcher.module.

Code

function role_theme_switcher_help($route_name, RouteMatchInterface $routeMatch) {
  switch ($route_name) {
    case 'role_theme_switcher.role_theme_switcher_admin_settings':
      return '<p>' . t("This form allows you to assign separate themes for different roles (including anonymous) in your system. <br/> Theme will be applied to users following the prioritized roles below.") . '</p>';
  }
}