function NodeHooks1::entityViewDisplayAlter

Implements hook_entity_view_display_alter().

File

core/modules/node/src/Hook/NodeHooks1.php, line 143

Class

NodeHooks1
Hook implementations for node.

Namespace

Drupal\node\Hook

Code

public function entityViewDisplayAlter(EntityViewDisplayInterface $display, $context) {
    if ($context['entity_type'] == 'node') {
        // Hide field labels in search index.
        if ($context['view_mode'] == 'search_index') {
            foreach ($display->getComponents() as $name => $options) {
                if (isset($options['label'])) {
                    $options['label'] = 'hidden';
                    $display->setComponent($name, $options);
                }
            }
        }
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.