You are here

function authcache_form_uninstall in Authenticated User Page Caching (Authcache) 7.2

Implements hook_uninstall().

File

modules/authcache_form/authcache_form.install, line 39
Install, update and uninstall functions for the authcache form module.

Code

function authcache_form_uninstall() {
  variable_del('authcache_form_base_id_token');
  variable_del('authcache_form_cache_lifespan');
  variable_del('authcache_form_notoken');
  variable_del('authcache_form_notoken_roles');
  variable_del('authcache_form_roles');
}