You are here

protected function NodeViewBuilder::alterBuild in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/node/src/NodeViewBuilder.php \Drupal\node\NodeViewBuilder::alterBuild()

Specific per-entity building.

Parameters

array $build: The render array that is being created.

\Drupal\Core\Entity\EntityInterface $entity: The entity to be prepared.

\Drupal\Core\Entity\Display\EntityViewDisplayInterface $display: The entity view display holding the display options configured for the entity components.

string $view_mode: The view mode that should be used to prepare the entity.

Overrides EntityViewBuilder::alterBuild

File

core/modules/node/src/NodeViewBuilder.php, line 150
Contains \Drupal\node\NodeViewBuilder.

Class

NodeViewBuilder
Render controller for nodes.

Namespace

Drupal\node

Code

protected function alterBuild(array &$build, EntityInterface $entity, EntityViewDisplayInterface $display, $view_mode) {

  /** @var \Drupal\node\NodeInterface $entity */
  parent::alterBuild($build, $entity, $display, $view_mode);
  if ($entity
    ->id()) {
    $build['#contextual_links']['node'] = array(
      'route_parameters' => array(
        'node' => $entity
          ->id(),
      ),
      'metadata' => array(
        'changed' => $entity
          ->getChangedTime(),
      ),
    );
  }
}