You are here

function statcounter_install in StatCounter 7.2

@file Installation file for Statcounter - Web analytics module.

File

./statcounter.install, line 8
Installation file for Statcounter - Web analytics module.

Code

function statcounter_install() {

  // Remove tracking from all administrative pages, see http://drupal.org/node/34970.
  variable_set('statcounter_visibility_roles', 0);
  variable_set('statcounter_visibility_pages', 0);
  $pages = array(
    'admin',
    'admin/*',
    'batch',
    'node/add*',
    'node/*/*',
    'user/*/*',
  );
  variable_set('statcounter_pages', implode("\n", $pages));
}