You are here

mobile_switch.install in Mobile Switch 6

Same filename and directory in other branches
  1. 7.2 mobile_switch.install
  2. 7 mobile_switch.install

Install, update and uninstall functions for the Mobile Switch module.

File

mobile_switch.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the Mobile Switch module.
 */

/**
 * Implementation of of hook_uninstall().
 */
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);
  }
}

Functions

Namesort descending Description
mobile_switch_uninstall Implementation of of hook_uninstall().