You are here

qtip_webform.install in qTip (Stylish jQuery Tooltips) 7.2

File

modules/qtip_webform/qtip_webform.install
View source
<?php

/**
 * Implements hook_uninstall().
 */
function qtip_webform_uninstall() {
  db_delete('variable')
    ->condition('name', 'qtip_webform_%', 'LIKE')
    ->execute();
}

Functions

Namesort descending Description
qtip_webform_uninstall Implements hook_uninstall().