function stylizer_ui::edit_wizard_finish
Overrides ctools_export_ui::edit_wizard_finish
File
-
stylizer/
plugins/ export_ui/ stylizer_ui.class.php, line 259
Class
- stylizer_ui
- UI class for Stylizer.
Code
public function edit_wizard_finish(&$form_state) {
// These might be stored by the stylizer wizard, so we should clear them.
if (isset($form_state['settings']['old_settings'])) {
unset($form_state['settings']['old_settings']);
}
$this->store_stylizer_info($form_state);
parent::edit_wizard_finish($form_state);
}