function floating_block_uninstall in Floating block 6
Same name and namespace in other branches
- 7 floating_block.install \floating_block_uninstall()
Implements hook_uninstall().
Deletes any variables that might have been set by the module.
File
- ./
floating_block.install, line 13 - Install, update, and uninstall functions for the floating_block module.
Code
function floating_block_uninstall() {
variable_del('floating_block_to_apply');
variable_del('floating_blocks');
}