function NodeViewBuilder::getBuildDefaults
Provides entity-specific defaults to the build process.
Parameters
\Drupal\Core\Entity\EntityInterface $entity: The entity for which the defaults should be provided.
string $view_mode: The view mode that should be used.
Return value
array
Overrides EntityViewBuilder::getBuildDefaults
File
- 
              core/
modules/ node/ src/ NodeViewBuilder.php, line 60  
Class
- NodeViewBuilder
 - View builder handler for nodes.
 
Namespace
Drupal\nodeCode
protected function getBuildDefaults(EntityInterface $entity, $view_mode) {
  $defaults = parent::getBuildDefaults($entity, $view_mode);
  // Don't cache nodes that are in 'preview' mode.
  if (isset($defaults['#cache']) && isset($entity->in_preview)) {
    unset($defaults['#cache']);
  }
  return $defaults;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.