You are here

function ad_notify_help in Advertisement 6

Same name and namespace in other branches
  1. 5.2 notify/ad_notify.module \ad_notify_help()
  2. 5 notify/ad_notify.module \ad_notify_help()

Implementation of hook_help().

File

notify/ad_notify.module, line 17
Receive email notifications regarding ads.

Code

function ad_notify_help($path, $arg) {
  $output = '';
  switch ($path) {
    case 'admin/help#ad_notify':
      $output = '<p>' . t('The ad_notify modules provides email notifications for the ad module.') . '</p>';
      break;
  }
  return $output;
}