function ad_notify_help in Advertisement 5.2
Same name and namespace in other branches
- 5 notify/ad_notify.module \ad_notify_help()
 - 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;
}