You are here

google_adwords_path.module in Google AdWords Conversion Tracking 8

Same filename and directory in other branches
  1. 7.2 modules/google_adwords_path/google_adwords_path.module

Module file for the Google Adwords Path Submodule.

File

modules/google_adwords_path/google_adwords_path.module
View source
<?php

/**
 * @file
 * Module file for the Google Adwords Path Submodule.
 */

/**
 * Implements hook_help().
 */
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;
}

Functions

Namesort descending Description
google_adwords_path_help Implements hook_help().