You are here

function stylizer_ui::edit_wizard_next in Chaos Tool Suite (ctools) 6

Same name and namespace in other branches
  1. 7 stylizer/plugins/export_ui/stylizer_ui.class.php \stylizer_ui::edit_wizard_next()

Wizard 'next' callback when using a wizard to edit an item.

The wizard callback delegates this back to the object.

Overrides ctools_export_ui::edit_wizard_next

File

stylizer/plugins/export_ui/stylizer_ui.class.php, line 236

Class

stylizer_ui
UI class for Stylizer.

Code

function edit_wizard_next(&$form_state) {
  $this
    ->store_stylizer_info($form_state);
  parent::edit_wizard_next($form_state);
}