protected function VideoPlayerBase::getEntitiesToView in Media entity video 8
Same name and namespace in other branches
- 8.3 src/Plugin/Field/FieldFormatter/VideoPlayerBase.php \Drupal\media_entity_video\Plugin\Field\FieldFormatter\VideoPlayerBase::getEntitiesToView()
- 8.2 src/Plugin/Field/FieldFormatter/VideoPlayerBase.php \Drupal\media_entity_video\Plugin\Field\FieldFormatter\VideoPlayerBase::getEntitiesToView()
Returns the referenced entities for display.
The method takes care of:
- checking entity access,
- placing the entities in the language expected for display.
It is thus strongly recommended that formatters use it in their implementation of viewElements($items) rather than dealing with $items directly.
For each entity, the EntityReferenceItem by which the entity is referenced is available in $entity->_referringItem. This is useful for field types that store additional values next to the reference itself.
Parameters
\Drupal\Core\Field\EntityReferenceFieldItemListInterface $items: The item list.
string $langcode: The language code of the referenced entities to display.
Return value
\Drupal\Core\Entity\EntityInterface[] The array of referenced entities to display, keyed by delta.
Overrides EntityReferenceFormatterBase::getEntitiesToView
See also
::prepareView()
1 call to VideoPlayerBase::getEntitiesToView()
- VideoPlayerHTML5::viewElements in src/
Plugin/ Field/ FieldFormatter/ VideoPlayerHTML5.php - Builds a renderable array for a field value.
File
- src/
Plugin/ Field/ FieldFormatter/ VideoPlayerBase.php, line 16
Class
- VideoPlayerBase
- Base class for Video Player file formatters.
Namespace
Drupal\media_entity_video\Plugin\Field\FieldFormatterCode
protected function getEntitiesToView(EntityReferenceFieldItemListInterface $items, $langcode) {
return parent::getEntitiesToView($items, $langcode);
}