You are here

function context_node_view in Context 7.3

Implementation of hook_node_view().

File

./context.core.inc, line 139

Code

function context_node_view($node, $view_mode) {
  $object = menu_get_object();
  if (isset($object->nid) && $object->nid === $node->nid) {
    context_node_condition($node, 'view');
  }
}