function pardot_help in Pardot Integration 6
Same name and namespace in other branches
- 7.2 pardot.module \pardot_help()
- 7 pardot.module \pardot_help()
- 2.x pardot.module \pardot_help()
Implementation of hook_help().
File
- ./
pardot.module, line 133 - ParDot integration module.
Code
function pardot_help($path, $arg) {
switch ($path) {
case 'admin/settings/pardot':
return '<p>' . t('For help finding tracking code, follow the !instructions found on the Pardot help site', array(
'!instructions' => l('instructions', 'http://help.pardot.com/faqs/campaigns/tracking-code'),
)) . '</p>';
}
}