You are here

function context_admin_set_page_cache in Contextual Administration 7

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

Store changes to a task handler in the object cache.

File

./context_admin.module, line 76

Code

function context_admin_set_page_cache($name, $page) {
  $page->changed = TRUE;
  ctools_include('object-cache');
  $cache = ctools_object_cache_set('context_admin', $name, $page);
}