You are here

function gathercontent_uninstall in GatherContent 7.2

Same name and namespace in other branches
  1. 8 gathercontent.install \gathercontent_uninstall()
  2. 7.3 gathercontent.install \gathercontent_uninstall()
  3. 7 gathercontent.install \gathercontent_uninstall()

Implements hook_uninstall().

File

./gathercontent.install, line 32
Install, uninstall, and update functions for the GatherContent module.

Code

function gathercontent_uninstall() {
  variable_del('gathercontent_project_id');
  variable_del('gathercontent_api_url');
  variable_del('gathercontent_api_key');
  variable_del('gathercontent_media_files');
  variable_del('gathercontent_selected_pages');
  variable_del('gathercontent_saved_settings');
  variable_del('gathercontent_saved_pages');
}