function omega_tools_uninstall in Omega Tools 7
Cleanup and uninstallation
File
- ./
omega_tools.install, line 5
Code
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();
}