You are here

function ad_external_help in Advertisement 6.2

Same name and namespace in other branches
  1. 5.2 external/ad_external.module \ad_external_help()
  2. 5 external/ad_external.module \ad_external_help()
  3. 6.3 external/ad_external.module \ad_external_help()
  4. 6 external/ad_external.module \ad_external_help()
  5. 7 external/ad_external.module \ad_external_help()

Implementation of hook_help().

File

external/ad_external.module, line 77
Enhances the ad module to support externally hosted ads, served via IFrames. It is recommended that you configure "Administer >> Content management >> Ads >> Settings >> Global settings >> Display type" to…

Code

function ad_external_help($path, $arg) {
  $output = '';
  switch ($path) {
    case 'node/add/ad#external':
      $output = t('An external advertisement, displayed in an IFrame.');
      break;
  }
  return $output;
}