123456789101112131415161718192021 |
- <?php
- /**
- * @file
- * Contains install and update functions for modal_forms.
- */
- /**
- * Implements hook_install().
- */
- function modal_forms_install() {
- }
- /**
- * Implements hook_uninstall().
- */
- function modal_forms_uninstall() {
- db_query("DELETE FROM {variable} WHERE name LIKE 'modal_forms_%'");
- }
|