You are here

function xautoload_uninstall in X Autoload 7.5

Same name and namespace in other branches
  1. 7.3 xautoload.install \xautoload_uninstall()
  2. 7.4 xautoload.install \xautoload_uninstall()

Implements hook_uninstall()

File

./xautoload.install, line 19

Code

function xautoload_uninstall() {
  variable_del(XAUTOLOAD_VARNAME_CACHE_TYPES);
  variable_del(XAUTOLOAD_VARNAME_CACHE_LAZY);
  variable_del(XAUTOLOAD_VARNAME_REPLACE_CORE);
  variable_del(XAUTOLOAD_VARNAME_CACHE_PREFIX);

  // The following variable is a leftover from previous versions.
  variable_del('xautoload_cache_mode');
}