public function EntityTestViewBuilder::buildComponents in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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 32 - Contains \Drupal\entity_test\EntityTestViewBuilder.
Class
- EntityTestViewBuilder
- Defines an entity view builder for a test entity.
Namespace
Drupal\entity_testCode
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'] = array(
'#weight' => -100,
'#plain_text' => $entity
->label(),
);
$build[$id]['separator'] = array(
'#weight' => -150,
'#markup' => ' | ',
);
$build[$id]['view_mode'] = array(
'#weight' => -200,
'#plain_text' => $view_mode,
);
}
}