modal_forms.install 306 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * @file
  4. * Contains install and update functions for modal_forms.
  5. */
  6. /**
  7. * Implements hook_install().
  8. */
  9. function modal_forms_install() {
  10. }
  11. /**
  12. * Implements hook_uninstall().
  13. */
  14. function modal_forms_uninstall() {
  15. db_query("DELETE FROM {variable} WHERE name LIKE 'modal_forms_%'");
  16. }