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