date_popup.install 391 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /**
  3. * @file
  4. * Install, update and uninstall functions for the Date Popup module.
  5. */
  6. /**
  7. * Implements hook_install().
  8. */
  9. function date_popup_install() {
  10. }
  11. /**
  12. * Implements hook_uninstall().
  13. */
  14. function date_popup_uninstall() {
  15. }
  16. /**
  17. * Implements hook_enable().
  18. */
  19. function date_popup_enable() {
  20. }
  21. /**
  22. * Implements hook_disable().
  23. */
  24. function date_popup_disable() {
  25. }