123456789101112131415161718192021222324252627282930313233 |
- <?php
- /**
- * @file
- * Install, update and uninstall functions for the Date Popup module.
- */
- /**
- * Implements hook_install().
- */
- function date_popup_install() {
- }
- /**
- * Implements hook_uninstall().
- */
- function date_popup_uninstall() {
- }
- /**
- * Implements hook_enable().
- */
- function date_popup_enable() {
- }
- /**
- * Implements hook_disable().
- */
- function date_popup_disable() {
- }
|