date_popup.install 451 B

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