function referral_help in User Referral 7
Same name and namespace in other branches
- 5 referral.module \referral_help()
- 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;
}
}