function gathercontent_uninstall in GatherContent 7
Same name and namespace in other branches
- 8 gathercontent.install \gathercontent_uninstall()
- 7.3 gathercontent.install \gathercontent_uninstall()
- 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');
}