function node_test_entity_view_mode_alter

Implements hook_entity_view_mode_alter().

File

drupal/core/modules/node/tests/modules/node_test/node_test.module, line 160
A dummy module for testing node related hooks.

Code

function node_test_entity_view_mode_alter(&$view_mode, Drupal\Core\Entity\EntityInterface $entity, $context) {

  // Only alter the view mode if we are on the test callback.
  if ($change_view_mode = variable_get('node_test_change_view_mode', '')) {
    $view_mode = $change_view_mode;
  }
}