You are here

function document_view in Document 7

Same name and namespace in other branches
  1. 6 document.module \document_view()
  2. 8.x document.module \document_view()

Implementation of hook_view().

File

./document.module, line 467

Code

function document_view($node, $view_mode) {
  $node->content['document'] = array(
    '#type' => 'markup',
    '#markup' => theme('document_info', array(
      'node' => $node,
    )),
    '#weight' => -5,
  );
  return $node;
}