function ad_html_help in Advertisement 5.2
Same name and namespace in other branches
- 5 html/ad_html.module \ad_html_help()
- 6.3 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 25 - Enhances the ad module to support html ads.
Code
function ad_html_help($path) {
switch ($path) {
case 'node/add/ad#html':
$output = t('A html advertisement.');
break;
}
return $output;
}