You are here

function semantic_panels_style_ui::edit_form_submit in Semantic Panels 7.2

Handle the submission of the edit form.

At this point, submission is successful. Our only responsibility is to copy anything out of values onto the item that we are able to edit.

If the keys all match up to the schema, this method will not need to be overridden.

Overrides ctools_export_ui::edit_form_submit

File

plugins/export_ui/semantic_panels_style_ui.class.php, line 90

Class

semantic_panels_style_ui
Base class for export UI.

Code

function edit_form_submit(&$form, &$form_state) {
  ctools_include('semantic_panels', 'semantic_panels', 'plugins/styles');
  semantic_panels_pane_settings_form_submit($form, $form_state['values'], $form_state);
  parent::edit_form_submit($form, $form_state);
}