You are here

function ad_external_help in Advertisement 5.2

Same name and namespace in other branches
  1. 5 external/ad_external.module \ad_external_help()
  2. 6.3 external/ad_external.module \ad_external_help()
  3. 6 external/ad_external.module \ad_external_help()
  4. 6.2 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 51
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) {
  switch ($path) {
    case 'node/add/ad#external':
      $output = t('An external advertisement, displayed in an IFrame.');
      break;
  }
  return $output;
}