You are here

function mobile_tools_uninstall in Mobile Tools 6

Same name and namespace in other branches
  1. 5 mobile_tools.install \mobile_tools_uninstall()
  2. 6.3 mobile_tools.install \mobile_tools_uninstall()
  3. 6.2 mobile_tools.install \mobile_tools_uninstall()
  4. 7.3 mobile_tools.install \mobile_tools_uninstall()
  5. 7.2 mobile_tools.install \mobile_tools_uninstall()

File

./mobile_tools.install, line 12
Mobile Tools installation

Code

function mobile_tools_uninstall() {
  $query = "SELECT * FROM {mobile_tools_roles_relations}";
  $result = db_query($query);
  while ($item = db_fetch_object($result)) {
    db_query("DELETE FROM {role} WHERE rid = %d", $item->mrid);
  }
  variable_del('default_main_nodes_mobile');
  variable_del('default_main_nodes_original');
  variable_del('site_frontpage_mobile');
  variable_del('mobile_tools_enable_build_mode');
  variable_del('desktop_notification');
  variable_del('mobile_notification');
  variable_del('mobile_tools_redirect_exceptions');
  variable_del('mobile_tools_redirect_exceptions_type');
  variable_del('mobile_tools_cookie_session');
  variable_del('mobile_tools_redirect');
  variable_del('mobile_tools_desktop_url');
  variable_del('mobile_tools_mobile_url');
  variable_del('mobile-tools-theme-switch');
  variable_del('mobile_tools_theme_name');
  variable_del('mobile-tools-device-detection');
  variable_del('mobile-tools-device-capabilities');
  drupal_uninstall_schema('mobile_tools');
}