You are here

function flickr_uninstall in Flickr 7

Same name and namespace in other branches
  1. 5 flickr.install \flickr_uninstall()
  2. 6 flickr.install \flickr_uninstall()

Implements hook_uninstall().

File

./flickr.install, line 24
The Flickr database schema and uninstall hook.

Code

function flickr_uninstall() {
  variable_del('flickr_api_key');
  variable_del('flickr_api_secret');
  variable_del('flickr_cache_duration');
  variable_del('flickr_cc');
  variable_del('flickr_class');
  variable_del('flickr_css');
  variable_del('flickr_curl');
  variable_del('flickr_curl2');
  variable_del('flickr_debug');
  variable_del('flickr_default_size_album');
  variable_del('flickr_default_userid');
  variable_del('flickr_opening_size');
  variable_del('flickr_per_page');
  variable_del('flickr_photos_per_page');
  variable_del('flickr_rel');
  variable_del('flickr_title_suppress_on_small');
  variable_del('flickr_metadata_suppress_on_small');
  variable_del('flickr_info_overlay');
  variable_del('flickr_license');
  variable_del('flickr_restrict');
  variable_del('flickr_extend');
  variable_del('flickr_counter');
  variable_del('flickr_maps');
  variable_del('flickr_geophp');
  variable_del('flickr_smart');
  variable_del('flickr_date_format_image_title');
  variable_del('flickr_date_format_image_caption');
  variable_del('flickr_date_format_image_caption_hover');
  variable_del('flickr_date_format_album_title');
  variable_del('flickr_capsize');
  variable_del('flickr_sswidth_value');
  variable_del('flickr_sswidth_unit');
  variable_del('flickr_sswidth');
  variable_del('flickr_sswratio');
  variable_del('flickr_sshratio');
  variable_del('flickr_ssratio');
  variable_del('flickr_caption_fontsize');
  variable_del('flickr_preview_html');
  variable_del('flickr_preview_collapsed');
}