You are here

public function AddFormBase::submitForm in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/media_library/src/Form/AddFormBase.php \Drupal\media_library\Form\AddFormBase::submitForm()
  2. 9 core/modules/media_library/src/Form/AddFormBase.php \Drupal\media_library\Form\AddFormBase::submitForm()

Form submission handler.

Parameters

array $form: An associative array containing the structure of the form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Overrides FormInterface::submitForm

File

core/modules/media_library/src/Form/AddFormBase.php, line 673

Class

AddFormBase
Provides a base class for creating media items from within the media library.

Namespace

Drupal\media_library\Form

Code

public function submitForm(array &$form, FormStateInterface $form_state) {
  foreach ($this
    ->getAddedMediaItems($form_state) as $delta => $media) {
    EntityFormDisplay::collectRenderDisplay($media, 'media_library')
      ->extractFormValues($media, $form['media'][$delta]['fields'], $form_state);
    $this
      ->prepareMediaEntityForSave($media);
    $media
      ->save();
  }
}