You are here

function statcounter_uninstall in StatCounter 7.2

Same name and namespace in other branches
  1. 5 statcounter.install \statcounter_uninstall()
  2. 6 statcounter.install \statcounter_uninstall()

File

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

Code

function statcounter_uninstall() {
  variable_del('statcounter_cache');
  variable_del('statcounter_custom');
  variable_del('statcounter_js_scope');
  variable_del('statcounter_last_cache');
  variable_del('statcounter_pages');
  variable_del('statcounter_privacy_donottrack');
  variable_del('statcounter_roles');
  variable_del('statcounter_project_id');
  variable_del('statcounter_security_code');
  variable_del('statcounter_visibility_pages');
  variable_del('statcounter_visibility_roles');
  variable_del('statcounter_invisible_tracking');
}