Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / 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, $context) {
5   // For nodes, change the view mode when it is teaser.
6   if ($context['entity_type'] == 'node' && $view_mode == 'teaser') {
7     $view_mode = 'my_custom_view_mode';
8   }
9 }