You are here

public function File::submitConfigurationForm in Commerce File 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/File.php, line 101

Class

File
The file license type.

Namespace

Drupal\commerce_file\Plugin\Commerce\LicenseType

Code

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