You are here

function qtip_uninstall in qTip (Stylish jQuery Tooltips) 7

Same name and namespace in other branches
  1. 6.2 qtip.install \qtip_uninstall()
  2. 6 qtip.install \qtip_uninstall()
  3. 7.2 qtip.install \qtip_uninstall()

Implements hook_uninstall().

File

./qtip.install, line 38
Install, update and uninstall functions for the qtip module.

Code

function qtip_uninstall() {
  variable_del('qtip_target_position');
  variable_del('qtip_show_speech_bubble_tip');
  variable_del('qtip_show_speech_bubble_tip_side');
  variable_del('qtip_speech_bubble_tip_size');
  variable_del('qtip_show_speech_bubble_tip_solid');
  variable_del('qtip_show_shadow');
  variable_del('qtip_rounded_corners');
  variable_del('qtip_color');
  variable_del('qtip_custom_color');
  variable_del('qtip_show_event_type');
  variable_del('qtip_hide_event_type');
  variable_del('qtip_show_webform_descriptions');
  variable_del('qtip_additional_elements');
}