You are here

function services_keyauth_uninstall in Services 6.2

Same name and namespace in other branches
  1. 7 auth/services_keyauth/services_keyauth.install \services_keyauth_uninstall()

Implementation of hook_uninstall().

File

auth/services_keyauth/services_keyauth.install, line 143
Install, uninstall and update the module.

Code

function services_keyauth_uninstall() {
  drupal_uninstall_schema('services_keyauth');
  variable_del('services_use_key');
  variable_del('services_use_sessid');
}