You are here

function commerce_userpoints_help in Commerce userpoints 7

Implements hook_help().

File

./commerce_userpoints.module, line 11
Hook implementations and API functions for the commerce_userpoints module.

Code

function commerce_userpoints_help($path) {
  $help = '';
  switch ($path) {
    case 'admin/commerce/config/currency/userpoints':
      $help = t('This page allows to set up a virtual currency for each !points category. After this, it can for example be used to buy products with these !points.', userpoints_translation());
      break;
  }
  return $help;
}