You are here

function photobox_uninstall in PhotoboxPhotobox 7

Implements hook_uninstall().

File

./photobox.install, line 16
Install, update and uninstall functions for the Photobox module.

Code

function photobox_uninstall() {
  variable_del('photobox_library_path');
  module_load_include('module', 'photobox');
  foreach (_photobox_settings() as $key => $setting) {
    variable_del('photobox_' . $key);
  }
}