You are here

function registration_role_help in Registration role 7

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

Implements hook_help().

File

./registration_role.module, line 20
The main registration_role.module file

Code

function registration_role_help($path, $arg) {
  $output = '';
  switch ($path) {
    case "admin/help#registration_role":
      $output = t("Auto-assign a role upon registration.");
      break;
  }
  return $output;
}