function regcode_og_help in Registration codes 7
Same name and namespace in other branches
- 6.2 regcode_og/regcode_og.module \regcode_og_help()
- 6 regcode_og/regcode_og.module \regcode_og_help()
- 7.2 regcode_og/regcode_og.module \regcode_og_help()
Implements hook_help().
File
- regcode_og/
regcode_og.module, line 11 - Install, uninstall and scheme functions for the regcode_og module.
Code
function regcode_og_help($path, $arg) {
$output = '';
switch ($path) {
case 'admin/user/regcode/og':
$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;
}