Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imcbride/dc3a5c1ce491ad74a2f6 to your computer and use it in GitHub Desktop.
Save imcbride/dc3a5c1ce491ad74a2f6 to your computer and use it in GitHub Desktop.
<?php
/**
* Implements hook_entity_view_mode_alter().
*/
function midd_entity_view_mode_alter(&$view_mode, $context) {
if ($context['entity_type'] == 'node' &&
$context['entity']->nid != arg(1) &&
$context['entity']->type == 'news') {
$view_mode = 'teaser';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment