You are here

modal_forms.install in Modal forms (with ctools) 7

Same filename and directory in other branches
  1. 6 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_uninstall().
 */
function modal_forms_uninstall() {

  // Remove all variables.
  db_delete('variable')
    ->condition('name', 'modal_forms_%', 'like')
    ->execute();
}

Functions

Namesort descending Description
modal_forms_uninstall Implements hook_uninstall().