Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / entity_view_mode_alter.twig
1 /**
2  * Implements hook_entity_view_mode_alter().
3  */
4 function {{ machine_name }}_entity_view_mode_alter(&$view_mode, Drupal\Core\Entity\EntityInterface $entity, $context) {
5   // For nodes, change the view mode when it is teaser.
6   if ($entity->getEntityTypeId() == 'node' && $view_mode == 'teaser') {
7     $view_mode = 'my_custom_view_mode';
8   }
9 }