function ad_text_help in Advertisement 7
Same name and namespace in other branches
- 5.2 text/ad_text.module \ad_text_help()
- 5 text/ad_text.module \ad_text_help()
- 6.3 text/ad_text.module \ad_text_help()
- 6 text/ad_text.module \ad_text_help()
- 6.2 text/ad_text.module \ad_text_help()
Implementation of hook_help().
File
- text/
ad_text.module, line 112 - Enhances the ad module to support static text ads.
Code
function ad_text_help($path, $arg) {
$output = '';
switch ($path) {
case 'node/add/ad#text':
$output = t('A text advertisement.');
break;
}
return $output;
}