function userpoints_help in User Points 5.3
Same name and namespace in other branches
- 5 userpoints.module \userpoints_help()
- 5.2 userpoints.module \userpoints_help()
- 6 userpoints.module \userpoints_help()
- 7.2 userpoints.module \userpoints_help()
- 7 userpoints.module \userpoints_help()
Implementation of hook_help().
File
- ./
userpoints.module, line 70
Code
function userpoints_help($section) {
switch ($section) {
case 'admin/settings/userpoints':
$output = t('Configure userpoints moderation and branding translation', userpoints_translation());
break;
case 'admin/help#userpoints':
$output = t('Users earn !points as they post nodes, comments, and vote on nodes', userpoints_translation());
}
return $output;
}