You are here

function regcode_roles_help in Registration codes 6.2

Same name and namespace in other branches
  1. 6 regcode_roles/regcode_roles.module \regcode_roles_help()
  2. 7.2 regcode_roles/regcode_roles.module \regcode_roles_help()
  3. 7 regcode_roles/regcode_roles.module \regcode_roles_help()

Implementation of hook_help()

File

regcode_roles/regcode_roles.module, line 7

Code

function regcode_roles_help($path, $arg) {
  switch ($path) {
    case 'admin/user/regcode/roles':
      return '<p>' . t('Automate role assignment based on regcode. Create a list of rules which are applied when users register.') . '</p>';
  }
}