omega_tools.install in Omega Tools 7
File
omega_tools.installView 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
Name![]() |
Description |
---|---|
omega_tools_uninstall | Cleanup and uninstallation |