You are here

function date_popup_uninstall in Date 6.2

Same name and namespace in other branches
  1. 7 date_popup/date_popup.install \date_popup_uninstall()

Implementation of hook_uninstall().

File

date_popup/date_popup.install, line 47

Code

function date_popup_uninstall() {
  if (module_exists('content')) {
    drupal_load('module', 'content');
    if (!db_table_exists(content_instance_tablename())) {
      return;
    }
    if (module_exists('date_repeat')) {
      db_query("UPDATE {" . content_instance_tablename() . "} SET widget_active=0 WHERE widget_type='%s' OR widget_type='%s'", 'date_popup', 'date_popup_repeat');
    }
    else {
      db_query("UPDATE {" . content_instance_tablename() . "} SET widget_active=0 WHERE widget_type='%s'", 'date_popup');
    }
    content_clear_type_cache(TRUE);
  }
}