You are here

public function GravatarGenerator::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_gravatar/src/Plugin/AvatarGenerator/GravatarGenerator.php, line 69

Class

GravatarGenerator
Gravatar generated avatars generator.

Namespace

Drupal\avatars_gravatar\Plugin\AvatarGenerator

Code

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