uc_reports.install 372 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * @file
  4. * Install, update and uninstall functions for the uc_reports module.
  5. */
  6. /**
  7. * Implements hook_uninstall().
  8. */
  9. function uc_reports_uninstall() {
  10. db_delete('variable')
  11. ->condition('name', 'uc_reports_%', 'LIKE')
  12. ->execute();
  13. }
  14. /**
  15. * Implements hook_update_last_removed().
  16. */
  17. function uc_reports_update_last_removed() {
  18. return 6000;
  19. }