function page_manager_page_wizard_next in Chaos Tool Suite (ctools) 6
Same name and namespace in other branches
- 7 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 162
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['cache']);
}