You are here

function mobile_tools_cache_disable in Mobile Tools 7.3

Implements hook_disable().

File

mobile_tools_cache/mobile_tools_cache.install, line 17

Code

function mobile_tools_cache_disable() {

  // Restore the original value
  variable_set('cache_default_class', variable_get('mobile_tools_cache_original'));

  // Cleanup variables
  variable_del('mobile_tools_cache_original');
}