You are here

modal_forms.install in Modal forms (with ctools) 6

Same filename and directory in other branches
  1. 7 modal_forms.install

Contains install and update functions for modal_forms.

File

modal_forms.install
View source
<?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_%'");
}

Functions