You are here

function ctools_cache_clear in Chaos Tool Suite (ctools) 7

Clear data from an indirect cache.

Parameters

string $mechanism: A string containing the plugin name, and an optional data element to send to the plugin separated by two colons.

string $key: The key used to identify the cache.

1 call to ctools_cache_clear()
ctools_wizard_multistep_form in includes/wizard.inc
Display a multi-step form.

File

includes/cache.inc, line 91
Plugins to handle cache-indirection.

Code

function ctools_cache_clear($mechanism, $key) {
  return ctools_cache_operation($mechanism, $key, 'clear');
}