You are here

function nodeviewcount_uninstall in Node view count 7.3

Same name and namespace in other branches
  1. 7 nodeviewcount.install \nodeviewcount_uninstall()
  2. 7.2 nodeviewcount.install \nodeviewcount_uninstall()

Implements hook_uninstall().

File

./nodeviewcount.install, line 72
Creates table for views counting.

Code

function nodeviewcount_uninstall() {
  variable_del('nodeviewcount_node_types');
  variable_del('nodeviewcount_user_roles');
  variable_del('nodeviewcount_way_counting');
  variable_del('nodeviewcount_flush_log_timer');
  variable_del('nodeviewcount_secret_key');
}