You are here

function ad_image_help in Advertisement 6.3

Same name and namespace in other branches
  1. 5.2 image/ad_image.module \ad_image_help()
  2. 5 image/ad_image.module \ad_image_help()
  3. 6 image/ad_image.module \ad_image_help()
  4. 6.2 image/ad_image.module \ad_image_help()
  5. 7 image/ad_image.module \ad_image_help()

Implementation of hook_help().

File

image/ad_image.module, line 103
Enhances the ad module to support banner ads.

Code

function ad_image_help($path, $arg) {
  $output = '';
  switch ($path) {
    case 'node/add/ad#image':
      $output = t('An image or banner advertisement.');
      break;
  }
  return $output;
}