You are here

function gauth_uninstall in Google Auth 7.2

Same name and namespace in other branches
  1. 7 gauth.install \gauth_uninstall()

Implements hook_uninstall().

File

./gauth.install, line 97
Install and uninstall functions for the Google OAuth module.

Code

function gauth_uninstall() {
  drupal_uninstall_schema('gauth');
  variable_del('gauth_google_api_services');
}