calendar.install 388 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * @file
  4. * Install, update and uninstall functions for the calendar module.
  5. *
  6. */
  7. function calendar_update_last_removed() {
  8. return 6002;
  9. }
  10. /**
  11. * Remove D6-style calendar legend block from block table.
  12. */
  13. function calendar_update_7000() {
  14. // Remove the former Calendar legend block, if any.
  15. db_query("DELETE FROM {block} WHERE module = 'calendar' AND delta = '0'");
  16. }