public function ImageWatermarkEffect::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/ ImageWatermarkEffect.php, line 210 - Contains \Drupal\iek\Plugin\ImageEffect\ImageWatermarkEffect.
Class
- ImageWatermarkEffect
- IEK - Watermark.
Namespace
Drupal\iek\Plugin\ImageEffectCode
public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
parent::submitConfigurationForm($form, $form_state);
$this->configuration['text'] = $form_state
->getValue('text');
$this->configuration['font'] = $form_state
->getValue('font');
$this->configuration['color'] = $form_state
->getValue('color');
$this->configuration['size'] = $form_state
->getValue('size');
$this->configuration['angle'] = $form_state
->getValue('angle');
$this->configuration['position'] = $form_state
->getValue('position');
$this->configuration['padding_top'] = $form_state
->getValue('padding_top');
$this->configuration['padding_right'] = $form_state
->getValue('padding_right');
$this->configuration['padding_bottom'] = $form_state
->getValue('padding_bottom');
$this->configuration['padding_left'] = $form_state
->getValue('padding_left');
}