You are here

function restful_token_auth_uninstall in RESTful 7.2

Same name and namespace in other branches
  1. 7 modules/restful_token_auth/restful_token_auth.install \restful_token_auth_uninstall()

Implements hook_uninstall().

File

modules/restful_token_auth/restful_token_auth.install, line 94
Install, update, and uninstall functions for the RESTful token authentication module.

Code

function restful_token_auth_uninstall() {
  variable_del('restful_token_auth_delete_expired_tokens');
  field_delete_field('refresh_token_reference');
}