modal_forms.install in Modal forms (with ctools) 7
Same filename and directory in other branches
Contains install and update functions for Modal Forms.
File
modal_forms.installView 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
Name![]() |
Description |
---|---|
modal_forms_uninstall | Implements hook_uninstall(). |