You are here

function google_adwords_path_help in Google AdWords Conversion Tracking 7.2

Same name and namespace in other branches
  1. 8 modules/google_adwords_path/google_adwords_path.module \google_adwords_path_help()

Implements hook_help().

File

modules/google_adwords_path/google_adwords_path.module, line 49
Module file for the Google Adwords Path Submodule.

Code

function google_adwords_path_help($path, $arg) {
  $output = '';
  switch ($path) {
    case 'admin/config/system/google_adwords/path/add':
      $output = '<p>' . t('Use this form to add a new Google Adwords conversion code.') . '</p>';
  }
  return $output;
}