You are here

function node_revision_delete_uninstall in Node Revision Delete 7.3

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

Implements hook_uninstall().

File

./node_revision_delete.install, line 38
Install, update and uninstall functions for the Node Revision Delete module.

Code

function node_revision_delete_uninstall() {
  variable_del('node_revision_delete_cron');
  variable_del('node_revision_delete_last_execute');
  variable_del('node_revision_delete_time');
  variable_del('node_revision_delete_when_to_delete_time');
  variable_del('node_revision_delete_minimum_age_to_delete_time');
  variable_del('node_revision_delete_track');
}