public function AddFormBase::submitForm in Drupal 8
Same name and namespace in other branches
- 9 core/modules/media_library/src/Form/AddFormBase.php \Drupal\media_library\Form\AddFormBase::submitForm()
 - 10 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 676  
Class
- AddFormBase
 - Provides a base class for creating media items from within the media library.
 
Namespace
Drupal\media_library\FormCode
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();
  }
}