You are here

function mobile_switch_uninstall in Mobile Switch 6

Same name and namespace in other branches
  1. 7.2 mobile_switch.install \mobile_switch_uninstall()
  2. 7 mobile_switch.install \mobile_switch_uninstall()

Implementation of of hook_uninstall().

File

./mobile_switch.install, line 10
Install, update and uninstall functions for the Mobile Switch module.

Code

function mobile_switch_uninstall() {
  $query = db_query("SELECT * FROM {variable} WHERE name LIKE '%mobile_switch_%'");
  while ($result = db_fetch_object($query)) {
    variable_del($result->name);
  }
}