You are here

function registration_role_help in Registration role 8

Same name and namespace in other branches
  1. 5 registration_role.module \registration_role_help()
  2. 6 registration_role.module \registration_role_help()
  3. 7 registration_role.module \registration_role_help()

Implements hook_help().

File

./registration_role.module, line 14
Module file for Registration role.

Code

function registration_role_help($route_name, RouteMatchInterface $route_match) {
  $output = '';
  switch ($route_name) {
    case 'help.page.registration_role':
      $output = t("Auto-assign a role upon registration.");
      return $output;
  }
}