You are here

public function MediaSourceInterface::prepareFormDisplay in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/media/src/MediaSourceInterface.php \Drupal\media\MediaSourceInterface::prepareFormDisplay()
  2. 10 core/modules/media/src/MediaSourceInterface.php \Drupal\media\MediaSourceInterface::prepareFormDisplay()

Prepares the media type fields for this source in the form display.

This method should normally call \Drupal\Core\Entity\Display\EntityDisplayInterface::setComponent() or \Drupal\Core\Entity\Display\EntityDisplayInterface::removeComponent() to configure the media type fields in the form display.

Parameters

\Drupal\media\MediaTypeInterface $type: The media type which is using this source.

\Drupal\Core\Entity\Display\EntityFormDisplayInterface $display: The display which should be prepared.

See also

\Drupal\Core\Entity\Display\EntityDisplayInterface::setComponent()

\Drupal\Core\Entity\Display\EntityDisplayInterface::removeComponent()

1 method overrides MediaSourceInterface::prepareFormDisplay()
MediaSourceBase::prepareFormDisplay in core/modules/media/src/MediaSourceBase.php
Prepares the media type fields for this source in the form display.

File

core/modules/media/src/MediaSourceInterface.php, line 180

Class

MediaSourceInterface
Defines the interface for media source plugins.

Namespace

Drupal\media

Code

public function prepareFormDisplay(MediaTypeInterface $type, EntityFormDisplayInterface $display);