You are here

function image_example_uninstall in Examples for Developers 7

Implements hook_uninstall().

Related topics

File

image_example/image_example.install, line 24
Install, update, and uninstall functions for the image_example module.

Code

function image_example_uninstall() {
  variable_del('image_example_style_name');
  variable_del('image_example_image_fid');
}