You are here

public function Role::submitConfigurationForm in Commerce License 8.2

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 LicenseTypeBase::submitConfigurationForm

File

src/Plugin/Commerce/LicenseType/Role.php, line 159

Class

Role
Provides a license type which grants one or more roles.

Namespace

Drupal\commerce_license\Plugin\Commerce\LicenseType

Code

public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
  $values = $form_state
    ->getValue($form['#parents']);
  if (!empty($values['license_role'])) {
    $this->configuration['license_role'] = $values['license_role'];
  }
}