You are here

function ad_notify_help in Advertisement 5.2

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

Implementation of hook_help().

File

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

Code

function ad_notify_help($path) {
  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;
}