13 lines
189 B
Plaintext
13 lines
189 B
Plaintext
<?php
|
|
/**
|
|
* @file
|
|
* Install/uninstall functions for the Blockify module.
|
|
*/
|
|
|
|
/**
|
|
* Implements hook_uninstall().
|
|
*/
|
|
function blockify_uninstall() {
|
|
variable_del('blockify_blocks');
|
|
}
|