You are here

public function FieldItemList::view in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Field/FieldItemList.php \Drupal\Core\Field\FieldItemList::view()

Returns a renderable array for the field items.

Parameters

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

See also

\Drupal\Core\Entity\EntityViewBuilderInterface::viewField()

\Drupal\Core\Field\FieldItemInterface::view()

File

core/lib/Drupal/Core/Field/FieldItemList.php, line 257
Contains \Drupal\Core\Field\FieldItemList.

Class

FieldItemList
Represents an entity field; that is, a list of field item objects.

Namespace

Drupal\Core\Field

Code

public function view($display_options = array()) {
  $view_builder = \Drupal::entityManager()
    ->getViewBuilder($this
    ->getEntity()
    ->getEntityTypeId());
  return $view_builder
    ->viewField($this, $display_options);
}