public function ItemViewBuilder::buildComponents in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/aggregator/src/ItemViewBuilder.php \Drupal\aggregator\ItemViewBuilder::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/ aggregator/ src/ ItemViewBuilder.php, line 20 - Contains \Drupal\aggregator\ItemViewBuilder.
Class
- ItemViewBuilder
- Render controller for aggregator feed items.
Namespace
Drupal\aggregatorCode
public function buildComponents(array &$build, array $entities, array $displays, $view_mode) {
parent::buildComponents($build, $entities, $displays, $view_mode);
foreach ($entities as $id => $entity) {
$bundle = $entity
->bundle();
$display = $displays[$bundle];
if ($display
->getComponent('description')) {
$build[$id]['description'] = array(
'#markup' => $entity
->getDescription(),
'#allowed_tags' => _aggregator_allowed_tags(),
'#prefix' => '<div class="item-description">',
'#suffix' => '</div>',
);
}
}
}