You are here

function page_manager_page_wizard_next in Chaos Tool Suite (ctools) 7

Same name and namespace in other branches
  1. 6 includes/page-wizard.inc \page_manager_page_wizard_next()

Callback generated when the 'next' button is clicked.

All we do here is store the cache.

1 string reference to 'page_manager_page_wizard_next'
page_manager_page_wizard in includes/page-wizard.inc
Menu callback for the page wizard.

File

includes/page-wizard.inc, line 166

Code

function page_manager_page_wizard_next(&$form_state) {
  if ($function = ctools_plugin_get_function($form_state['plugin'], 'next')) {
    $function($form_state);
  }
  page_manager_set_wizard_cache($form_state['wizard cache']);
}