You are here

function modal_forms_uninstall in Modal forms (with ctools) 7

Same name and namespace in other branches
  1. 6 modal_forms.install \modal_forms_uninstall()

Implements hook_uninstall().

File

./modal_forms.install, line 11
Contains install and update functions for Modal Forms.

Code

function modal_forms_uninstall() {

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