public function Gravatar::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/ Gravatar.php, line 77  
Class
- Gravatar
 - Gravatar avatar generator.
 
Namespace
Drupal\avatars_gravatar\Plugin\AvatarGeneratorCode
public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
  $this->configuration['maximum_rating'] = $form_state
    ->getValue('maximum_rating');
}