You are here

function clock_uninstall in Clock 7

Same name and namespace in other branches
  1. 6 clock.install \clock_uninstall()

Implements hook_uninstall().

File

./clock.install, line 11
Install, update and uninstall functions for the clock module.

Code

function clock_uninstall() {

  // Delete all clock variables.
  variable_del('clock_time_zone');
  variable_del('clock_date_type');
  variable_del('clock_update');
}