public function EntityViewBuilderDecorator::buildComponents in Devel 8.2
Same name and namespace in other branches
- 8.3 webprofiler/src/Entity/EntityViewBuilderDecorator.php \Drupal\webprofiler\Entity\EntityViewBuilderDecorator::buildComponents()
- 8 webprofiler/src/Entity/EntityViewBuilderDecorator.php \Drupal\webprofiler\Entity\EntityViewBuilderDecorator::buildComponents()
- 4.x webprofiler/src/Entity/EntityViewBuilderDecorator.php \Drupal\webprofiler\Entity\EntityViewBuilderDecorator::buildComponents()
Builds the component fields and properties of a set of entities.
Parameters
&$build: The renderable array representing the entity content.
\Drupal\Core\Entity\EntityInterface[] $entities: The entities whose content is being built.
\Drupal\Core\Entity\Display\EntityViewDisplayInterface[] $displays: The array of entity view displays holding the display options configured for the entity components, keyed by bundle name.
string $view_mode: The view mode in which the entity is being viewed.
Overrides EntityViewBuilderInterface::buildComponents
File
- webprofiler/
src/ Entity/ EntityViewBuilderDecorator.php, line 30
Class
- EntityViewBuilderDecorator
- Class EntityViewBuilderDecorator
Namespace
Drupal\webprofiler\EntityCode
public function buildComponents(array &$build, array $entities, array $displays, $view_mode, $langcode = NULL) {
$this
->getOriginalObject()
->buildComponents($build, $entities, $displays, $view_mode, $langcode);
}