function export_doc_content in Export document 7
Process node content.
1 call to export_doc_content()
- export_doc_export_action in ./
export_doc.module - Implementation of action_function().
File
- ./
export_doc.module, line 108 - The main file of export_doc.
Code
function export_doc_content(&$node) {
// Borrow print, then we can adjust display field in content type.
$print = print_controller($node->nid, NULL, NULL, NULL);
$content = $print->content;
return $content;
}