You are here

function openid_connect_uninstall in OpenID Connect / OAuth client 7

Implements hook_uninstall().

File

./openid_connect.install, line 11
Install, update, and uninstall functions for OpenID Connect module.

Code

function openid_connect_uninstall() {
  db_delete('variable')
    ->condition('name', 'openid_connect%', 'LIKE')
    ->execute();
  cache_clear_all('variables', 'cache_bootstrap');
}