protected TermViewBuilder::alterBuild(array &$build, EntityInterface $entity, EntityViewDisplayInterface $display, $view_mode)
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/taxonomy/src/TermViewBuilder.php, line 17
Class
- TermViewBuilder
- View builder handler for taxonomy terms.
Namespace
Drupal\taxonomy
Code
1 2 3 4 5 6 7 | protected function alterBuild( array & $build , EntityInterface $entity , EntityViewDisplayInterface $display , $view_mode ) { parent::alterBuild( $build , $entity , $display , $view_mode ); $build [ '#contextual_links' ][ 'taxonomy_term' ] = array ( 'route_parameters' => array ( 'taxonomy_term' => $entity ->id()), 'metadata' => array ( 'changed' => $entity ->getChangedTime()), ); } |
Please login to continue.