You are here

function referral_help in User Referral 7

Same name and namespace in other branches
  1. 5 referral.module \referral_help()
  2. 6 referral.module \referral_help()

Implements hook_help().

File

./referral.module, line 32
The referral module.

Code

function referral_help($path, $arg) {
  switch ($path) {
    case 'admin/settings/referral':
      $output = t('Track users referring others to your site');
      return $output;
  }
}