You are here

function ad_actions_help in Advertisement 6.3

Same name and namespace in other branches
  1. 6.2 actions/ad_actions.module \ad_actions_help()
  2. 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;
}