You are here

function context_admin_clear_page_cache in Contextual Administration 7

Same name and namespace in other branches
  1. 6 context_admin.module \context_admin_clear_page_cache()

Remove an item from the object cache.

File

./context_admin.module, line 85

Code

function context_admin_clear_page_cache($name) {
  ctools_include('object-cache');
  ctools_object_cache_clear('context_admin', $name);
}