public function ImageFilterEffect::submitConfigurationForm in Image effect kit 8
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 form. Calling code should pass on a subform state created through \Drupal\Core\Form\SubformState::createForSubform().
Overrides ConfigurableImageEffectBase::submitConfigurationForm
File
- src/
Plugin/ ImageEffect/ ImageFilterEffect.php, line 192 - Contains \Drupal\iek\Plugin\ImageEffect\ImageFilterEffect.
Class
- ImageFilterEffect
- IEK - Filter.
Namespace
Drupal\iek\Plugin\ImageEffectCode
public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
parent::submitConfigurationForm($form, $form_state);
$this->configuration['filter_name'] = $form_state
->getValue('filter_name');
$this->configuration['repeat'] = $form_state
->getValue('repeat');
$this->configuration['arg1'] = $form_state
->getValue('arg1');
$this->configuration['arg2'] = $form_state
->getValue('arg2');
$this->configuration['arg3'] = $form_state
->getValue('arg3');
$this->configuration['arg4'] = $form_state
->getValue('arg4');
}