You are here

function views_data_export_plugin_style_export::options_submit in Views data export 7.4

Handle any special handling on the validate form.

Overrides views_plugin::options_submit

File

plugins/views_data_export_plugin_style_export.inc, line 546
Plugin include file for export style plugin.

Class

views_data_export_plugin_style_export
Generalized style plugin for export plugins.

Code

function options_submit(&$form, &$form_state) {
  if (in_array('ViewsDataExportExporterUserConfigurationInterface', class_implements($this
    ->get_exporter()))) {
    $this
      ->get_exporter()
      ->options_submit($form, $form_state);
  }
  parent::options_submit($form, $form_state);
}