You are here

function ad_html_help in Advertisement 5.2

Same name and namespace in other branches
  1. 5 html/ad_html.module \ad_html_help()
  2. 6.3 html/ad_html.module \ad_html_help()
  3. 6 html/ad_html.module \ad_html_help()
  4. 6.2 html/ad_html.module \ad_html_help()
  5. 7 html/ad_html.module \ad_html_help()

Implementation of hook_help().

File

html/ad_html.module, line 25
Enhances the ad module to support html ads.

Code

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