function imagezoom_uninstall in Image Zoom 7.2
Same name and namespace in other branches
- 7 imagezoom.install \imagezoom_uninstall()
Implements hook_uninstall().
File
- ./
imagezoom.install, line 11 - Provides uninstall functions for the Image Zoom module.
Code
function imagezoom_uninstall() {
// delete variables created by settings form
variable_del('imagezoom_zoom_type');
variable_del('imagezoom_multiple_thumbs');
variable_del('imagezoom_hide_active_thumb');
variable_del('imagezoom_display_title');
variable_del('imagezoom_load_all');
variable_del('imagezoom_load_all_types');
variable_del('imagezoom_thumbs_jcarousel');
variable_del('imagezoom_colorbox');
}