You are here

function userpoints_service_help in User Points 6

Same name and namespace in other branches
  1. 5.3 userpoints_service.module \userpoints_service_help()
  2. 7.2 userpoints_service/userpoints_service.module \userpoints_service_help()
  3. 7 userpoints_service.module \userpoints_service_help()

Implementation of hook_help().

File

./userpoints_service.module, line 7

Code

function userpoints_service_help($section) {
  switch ($section) {
    case 'admin/help#services_userpoints':
    case 'admin/modules#description':
      return t('<p>Provides Userpoints XML-RPC service. Requires services.module.</p>');
  }
}