module_install.install 228 B

12345678910111213
  1. <?php
  2. /**
  3. * @file
  4. * Install, update and uninstall functions for the module_install module.
  5. */
  6. /**
  7. * Implements of hook_uninstall().
  8. */
  9. function module_install_uninstall() {
  10. variable_del('module_install_destination');
  11. }