location_user.install 251 B

1234567891011121314
  1. <?php
  2. /**
  3. * @file
  4. * Install, update and uninstall functions for the location_user module.
  5. */
  6. /**
  7. * Implentation of hook_uninstall().
  8. */
  9. function location_user_uninstall() {
  10. // Delete user settings.
  11. variable_del('location_settings_user');
  12. }