function ad_external_help in Advertisement 6
Same name and namespace in other branches
- 5.2 external/ad_external.module \ad_external_help()
- 5 external/ad_external.module \ad_external_help()
- 6.3 external/ad_external.module \ad_external_help()
- 6.2 external/ad_external.module \ad_external_help()
- 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;
}