You are here

function pardot_help in Pardot Integration 7

Same name and namespace in other branches
  1. 6 pardot.module \pardot_help()
  2. 7.2 pardot.module \pardot_help()
  3. 2.x pardot.module \pardot_help()

Implements hook_help().

File

./pardot.module, line 162
Pardot integration module.

Code

function pardot_help($path, $arg) {
  switch ($path) {
    case 'admin/config/services/pardot':
      return t('For help finding tracking code, follow the !instructions found on the Pardot help site', array(
        '!instructions' => l(t('instructions'), 'http://help.pardot.com/faqs/campaigns/tracking-code'),
      ));
  }
}