function hook_entity_view_alter
Same name in other branches
- 7.x modules/system/system.api.php \hook_entity_view_alter()
- 9 core/lib/Drupal/Core/Entity/entity.api.php \hook_entity_view_alter()
- 10 core/lib/Drupal/Core/Entity/entity.api.php \hook_entity_view_alter()
- 11.x core/lib/Drupal/Core/Entity/entity.api.php \hook_entity_view_alter()
Alter the results of the entity build array.
This hook is called after the content has been assembled in a structured array and may be used for doing processing which requires that the complete entity content structure has been built.
If a module wishes to act on the rendered HTML of the entity rather than the structured content array, it may use this hook to add a #post_render callback. Alternatively, it could also implement hook_preprocess_HOOK() for the particular entity type template, if there is one (e.g., node.html.twig).
See the Default theme implementations topic and drupal_render() for details.
Parameters
array &$build: A renderable array representing the entity content.
\Drupal\Core\Entity\EntityInterface $entity: The entity object being rendered.
\Drupal\Core\Entity\Display\EntityViewDisplayInterface $display: The entity view display holding the display options configured for the entity components.
See also
Related topics
6 functions implement hook_entity_view_alter()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- content_translation_language_fallback_candidates_entity_view_alter in core/
modules/ content_translation/ content_translation.module - Implements hook_language_fallback_candidates_OPERATION_alter().
- field_layout_entity_view_alter in core/
modules/ field_layout/ field_layout.module - Implements hook_entity_view_alter().
- layout_builder_entity_view_alter in core/
modules/ layout_builder/ layout_builder.module - Implements hook_entity_view_alter().
- media_test_ckeditor_entity_view_alter in core/
modules/ media/ tests/ modules/ media_test_ckeditor/ media_test_ckeditor.module - Implements hook_entity_view_alter().
- media_test_filter_entity_view_alter in core/
modules/ media/ tests/ modules/ media_test_filter/ media_test_filter.module - Implements hook_entity_view_alter().
File
-
core/
lib/ Drupal/ Core/ Entity/ entity.api.php, line 1555
Code
function hook_entity_view_alter(array &$build, Drupal\Core\Entity\EntityInterface $entity, \Drupal\Core\Entity\Display\EntityViewDisplayInterface $display) {
if ($build['#view_mode'] == 'full' && isset($build['an_additional_field'])) {
// Change its weight.
$build['an_additional_field']['#weight'] = -10;
// Add a #post_render callback to act on the rendered HTML of the entity.
// The object must implement \Drupal\Core\Security\TrustedCallbackInterface.
$build['#post_render'][] = '\\Drupal\\my_module\\NodeCallback::postRender';
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.