You are here

function ad_html_help in Advertisement 6.2

Same name and namespace in other branches
  1. 5.2 html/ad_html.module \ad_html_help()
  2. 5 html/ad_html.module \ad_html_help()
  3. 6.3 html/ad_html.module \ad_html_help()
  4. 6 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 55
Enhances the ad module to support html ads.

Code

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