You are here

om_tools.install in OM Tools 7

Install script to install the OM Tools module

File

om_tools.install
View source
<?php

/**
 * @file
 * Install script to install the OM Tools module
 *
 */

/**
 * Implementation of hook_uninstall().
 */
function om_tools_uninstall() {
  $result = db_query("SELECT * FROM {variable} WHERE name LIKE 'om_tools_%'");
  while ($record = $result
    ->fetchObject()) {
    variable_del($record->name);
  }
}

Functions

Namesort descending Description
om_tools_uninstall Implementation of hook_uninstall().