block_example.install 245 B

1234567891011121314
  1. <?php
  2. /**
  3. * @file
  4. * Install, update and uninstall functions for the block_example module.
  5. */
  6. /**
  7. * Implements hook_uninstall().
  8. *
  9. * @ingroup block_example
  10. */
  11. function block_example_uninstall() {
  12. variable_del('block_example_string');
  13. }