You are here

mcd.install in Maintenance Countdown 6

Same filename and directory in other branches
  1. 7 mcd.install

Uninstalls Maintenance Countdown

File

mcd.install
View source
<?php

/**
 * @file
 * Uninstalls Maintenance Countdown
 */

/**
 * Implementation of hook_uninstall().
 */
function mcd_uninstall() {
  variable_del('mcd_days');
  variable_del('mcd_hours');
  variable_del('mcd_maintenance');
  variable_del('mcd_minutes');
  variable_del('mcd_months');
  variable_del('mcd_page_themes');
  variable_del('mcd_reload_button');
  variable_del('mcd_seconds');
  variable_del('mcd_stoptime');
  variable_del('mcd_time_up_message');
}

Functions

Namesort descending Description
mcd_uninstall Implementation of hook_uninstall().