blockify.install 189 B

123456789101112
  1. <?php
  2. /**
  3. * @file
  4. * Install/uninstall functions for the Blockify module.
  5. */
  6. /**
  7. * Implements hook_uninstall().
  8. */
  9. function blockify_uninstall() {
  10. variable_del('blockify_blocks');
  11. }