module_filter.install 444 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * @file
  4. */
  5. /**
  6. * Implementation of hook_uninstall().
  7. */
  8. function module_filter_uninstall() {
  9. variable_del('module_filter_tabs');
  10. variable_del('module_filter_count_enabled');
  11. variable_del('module_filter_visual_aid');
  12. variable_del('module_filter_dynamic_save_position');
  13. }
  14. /**
  15. * Remove the 'module_filter_autocomplete' variable.
  16. */
  17. function module_filter_update_7100() {
  18. variable_del('module_filter_autocomplete');
  19. }