You are here

function ad_text_help in Advertisement 7

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

Implementation of hook_help().

File

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

Code

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