You are here

function page_manager_make_wizard_cache in Chaos Tool Suite (ctools) 6

Same name and namespace in other branches
  1. 7 includes/page-wizard.inc \page_manager_make_wizard_cache()
2 calls to page_manager_make_wizard_cache()
page_manager_get_wizard_cache in includes/page-wizard.inc
Get the cached changes to a given wizard.
page_manager_page_wizard in includes/page-wizard.inc
Menu callback for the page wizard.

File

includes/page-wizard.inc, line 55

Code

function page_manager_make_wizard_cache($plugin) {
  $cache = new stdClass();
  $cache->plugin = $plugin;
  if ($function = ctools_plugin_get_function($plugin, 'default cache')) {
    $function($cache);
  }
  return $cache;
}