You are here

function gathercontent_uninstall in GatherContent 7

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

Implements hook_uninstall().

File

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

Code

function gathercontent_uninstall() {

  // Remove items from {variables} table.
  variable_del('gathercontent_account_name');
  variable_del('gathercontent_api_key');
  variable_del('gathercontent_project_id');
  variable_del('gathercontent_content_type');
}