You are here

function omega_tools_cache_clear in Omega Tools 7.3

Remove an item from the object cache.

2 calls to omega_tools_cache_clear()
omega_tools_subtheme_wizard_cancel in includes/omega_tools.wizard.inc
@todo
omega_tools_subtheme_wizard_finish in includes/omega_tools.wizard.inc
@todo

File

./omega_tools.module, line 186

Code

function omega_tools_cache_clear($name) {
  ctools_include('object-cache');
  ctools_object_cache_clear('omega_tools', $name);
}