You are here

omega_tools.install in Omega Tools 7

File

omega_tools.install
View source
<?php

/**
 * Cleanup and uninstallation
 */
function omega_tools_uninstall() {

  // delete the setting to render blocks from the omega_tools module
  variable_del('omega_tools_block_render');

  // delete all data in the blocks table
  db_delete('block')
    ->condition('module', 'omega_tools')
    ->execute();
}

Functions

Namesort descending Description
omega_tools_uninstall Cleanup and uninstallation