You are here

public function Robohash::submitConfigurationForm in Avatar 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 AvatarGeneratorBase::submitConfigurationForm

File

avatars_robohash/src/Plugin/AvatarGenerator/Robohash.php, line 95

Class

Robohash
Robohash avatar generator.

Namespace

Drupal\avatars_robohash\Plugin\AvatarGenerator

Code

public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
  $this->configuration['type'] = $form_state
    ->getValue('type');
  $this->configuration['background'] = $form_state
    ->getValue('background');
}