You are here

public function ImportProcessorPluginBase::submitConfigurationForm in Entity Share 8.3

Form submission handler.

Parameters

array $form: An associative array containing the structure of the plugin form as built by static::buildConfigurationForm().

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the complete form.

File

modules/entity_share_client/src/ImportProcessor/ImportProcessorPluginBase.php, line 167

Class

ImportProcessorPluginBase
Defines a base class from which other processors may extend.

Namespace

Drupal\entity_share_client\ImportProcessor

Code

public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
  $this
    ->setConfiguration($form_state
    ->getValues());
}