date_repeat.install 515 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /**
  3. * @file
  4. * Install, update and uninstall functions for the Date Repeat module.
  5. */
  6. /**
  7. * Implements hook_install().
  8. */
  9. function date_repeat_install() {
  10. // Make sure this module loads after date_api.
  11. db_query("UPDATE {system} SET weight = 1 WHERE name = 'date_repeat'");
  12. }
  13. /**
  14. * Implements hook_uninstall().
  15. */
  16. function date_repeat_uninstall() {
  17. }
  18. /**
  19. * Implements hook_enable().
  20. */
  21. function date_repeat_enable() {
  22. }
  23. /**
  24. * Implements hook_disable().
  25. */
  26. function date_repeat_disable() {
  27. }