You are here

function jquery_countdown_block_uninstall in jQuery Countdown 6

@file Provides install, upgrade and un-install functions for jquery_countdown_block module.

File

jquery_countdown_block/jquery_countdown_block.install, line 7
Provides install, upgrade and un-install functions for jquery_countdown_block module.

Code

function jquery_countdown_block_uninstall() {

  // delete all jquery_countdown_block setting variables...
  foreach (variable_get('jquery_countdown_block_ids', array()) as $delta) {
    variable_del("jquery_countdown_block_{$delta}_settings");
  }
  variable_del('jquery_countdown_block_ids');

  // Remove block configurations.
  db_query("DELETE FROM {blocks} WHERE module = 'jquery_countdown_block'");
  db_query("DELETE FROM {blocks_roles} WHERE module = 'jquery_countdown_block'");
  cache_clear_all();
}