You are here

public function EntityTestViewBuilder::buildComponents in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/system/tests/modules/entity_test/src/EntityTestViewBuilder.php \Drupal\entity_test\EntityTestViewBuilder::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 EntityViewBuilder::buildComponents

File

core/modules/system/tests/modules/entity_test/src/EntityTestViewBuilder.php, line 17

Class

EntityTestViewBuilder
Defines an entity view builder for a test entity.

Namespace

Drupal\entity_test

Code

public function buildComponents(array &$build, array $entities, array $displays, $view_mode) {
  parent::buildComponents($build, $entities, $displays, $view_mode);
  foreach ($entities as $id => $entity) {
    $build[$id]['label'] = [
      '#weight' => -100,
      '#plain_text' => $entity
        ->label(),
    ];
    $build[$id]['separator'] = [
      '#weight' => -150,
      '#markup' => ' | ',
    ];
    $build[$id]['view_mode'] = [
      '#weight' => -200,
      '#plain_text' => $view_mode,
    ];
  }
}