function regcode_help in Registration codes 8
Same name and namespace in other branches
- 5.3 regcode.module \regcode_help()
- 5 regcode.module \regcode_help()
- 6.2 regcode.module \regcode_help()
- 6 regcode.module \regcode_help()
- 7.2 regcode.module \regcode_help()
- 7 regcode.module \regcode_help()
Implements hook_help().
File
- ./
regcode.module, line 27 - Main functionality and hooks of regcode module.
Code
function regcode_help($path, $arg) {
$output = '';
switch ($path) {
case 'regcode.admin_list':
$output = '<p>' . t('View and manage created registration codes.') . '</p>';
break;
case 'regcode.admin_create':
$output = '<p>' . t('Create manually or generate new registration codes.') . '</p>';
break;
case 'regcode.admin_manage':
$output = '<p>' . t('Provides bulk management features for created registration codes.') . '</p>';
break;
case 'regcode.admin_settings':
$output = '<p>' . t('Configure the registration code module.') . '</p>';
break;
}
return $output;
}