function document_view in Document 8.x
Same name and namespace in other branches
- 6 document.module \document_view()
- 7 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;
}