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