You are here

function ad_text_help in Advertisement 5.2

Same name and namespace in other branches
  1. 5 text/ad_text.module \ad_text_help()
  2. 6.3 text/ad_text.module \ad_text_help()
  3. 6 text/ad_text.module \ad_text_help()
  4. 6.2 text/ad_text.module \ad_text_help()
  5. 7 text/ad_text.module \ad_text_help()

Implementation of hook_help().

File

text/ad_text.module, line 45
Enhances the ad module to support static text ads.

Code

function ad_text_help($path) {
  switch ($path) {
    case 'node/add/ad#text':
      $output = t('A text advertisement.');
      break;
  }
  return $output;
}