You are here

function adsense_click_init in Google AdSense integration 7

Same name and namespace in other branches
  1. 6 contrib/adsense_click/adsense_click.module \adsense_click_init()

Implements hook_init().

File

contrib/adsense_click/adsense_click.module, line 75
Enables Drupal to track and log the clicks on AdSense ads.

Code

function adsense_click_init() {
  if (variable_get('adsense_click_tracking', ADSENSE_CLICK_TRACKING_DEFAULT)) {
    drupal_add_js(drupal_get_path('module', 'adsense_click') . '/adsense_click.js');
  }
}