You are here

function userpoints_help in User Points 7

Same name and namespace in other branches
  1. 5.3 userpoints.module \userpoints_help()
  2. 5 userpoints.module \userpoints_help()
  3. 5.2 userpoints.module \userpoints_help()
  4. 6 userpoints.module \userpoints_help()
  5. 7.2 userpoints.module \userpoints_help()

Implements hook_help().

File

./userpoints.module, line 70

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());
  }
}