You are here

function userpoints_basic_help in User Points 5

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

File

./userpoints_basic.module, line 10

Code

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