date_repeat.install 291 B

1234567891011121314
  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. }