function ad_actions_help in Advertisement 6.2
Same name and namespace in other branches
- 6.3 actions/ad_actions.module \ad_actions_help()
- 7 actions/ad_actions.module \ad_actions_help()
Implementation of hook_help().
File
- actions/
ad_actions.module, line 14 - Enable ad triggers and actions.
Code
function ad_actions_help($path, $arg) {
$output = '';
switch ($path) {
case 'admin/help#ad_actions':
$output = '<p>' . t('The ad_actions module provides triggers and actions allowing administrators to create notifications for the ad module.') . '</p>';
break;
}
return $output;
}