public function MediaSourceInterface::prepareViewDisplay in Drupal 10
Same name and namespace in other branches
- 8 core/modules/media/src/MediaSourceInterface.php \Drupal\media\MediaSourceInterface::prepareViewDisplay()
- 9 core/modules/media/src/MediaSourceInterface.php \Drupal\media\MediaSourceInterface::prepareViewDisplay()
Prepares the media type fields for this source in the view 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 view display.
Parameters
\Drupal\media\MediaTypeInterface $type: The media type which is using this source.
\Drupal\Core\Entity\Display\EntityViewDisplayInterface $display: The display which should be prepared.
See also
\Drupal\Core\Entity\Display\EntityDisplayInterface::setComponent()
\Drupal\Core\Entity\Display\EntityDisplayInterface::removeComponent()
File
- core/
modules/ media/ src/ MediaSourceInterface.php, line 161
Class
- MediaSourceInterface
- Defines the interface for media source plugins.
Namespace
Drupal\mediaCode
public function prepareViewDisplay(MediaTypeInterface $type, EntityViewDisplayInterface $display);