You are here

function userpoints_basic_help in User Points 5.3

Same name and namespace in other branches
  1. 5 userpoints_basic.module \userpoints_basic_help()
  2. 5.2 userpoints_basic.module \userpoints_basic_help()

File

./userpoints_basic.module, line 12

Code

function userpoints_basic_help($section) {
  switch ($section) {
    case 'admin/settings/userpoints_basic':
      $output = t('Some basic interfaces for userpoints, such as posting nodes, comments, ...etc.');
      break;
  }
  return $output;
}