function FieldItemList::view
Same name and namespace in other branches
- 8.9.x core/lib/Drupal/Core/Field/FieldItemList.php \Drupal\Core\Field\FieldItemList::view()
- 10 core/lib/Drupal/Core/Field/FieldItemList.php \Drupal\Core\Field\FieldItemList::view()
- 11.x core/lib/Drupal/Core/Field/FieldItemList.php \Drupal\Core\Field\FieldItemList::view()
Returns a renderable array for the field items.
Parameters
string|array $display_options: Can be either the name of a view mode, or an array of display settings. See EntityViewBuilderInterface::viewField() for more information.
Return value
array A renderable array for the field values.
Overrides FieldItemListInterface::view
File
-
core/
lib/ Drupal/ Core/ Field/ FieldItemList.php, line 241
Class
- FieldItemList
- Represents an entity field; that is, a list of field item objects.
Namespace
Drupal\Core\FieldCode
public function view($display_options = []) {
$view_builder = \Drupal::entityTypeManager()->getViewBuilder($this->getEntity()
->getEntityTypeId());
return $view_builder->viewField($this, $display_options);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.