You are here

function regcode_og_help in Registration codes 6

Same name and namespace in other branches
  1. 6.2 regcode_og/regcode_og.module \regcode_og_help()
  2. 7.2 regcode_og/regcode_og.module \regcode_og_help()
  3. 7 regcode_og/regcode_og.module \regcode_og_help()

Implementation of hook_help()

File

regcode_og/regcode_og.module, line 6

Code

function regcode_og_help($path, $arg) {
  $output = '';
  switch ($path) {
    case 'admin/user/regcodes/ogs':
      $output = '<p>' . t('Automate organic group assignment based on regcode. Create a list of rules which are applied when users register.') . '</p>';
      break;
  }
  return $output;
}