You are here

function hook_node_export in Node export 6.3

Create the output code for nodes.

Called from the module with the currently used export format.

Parameters

$nodes: An array of nodes to export.

$format: The format to use for export. Check this if module does multiple formats.

Return value

The code string.

4 functions implement hook_node_export()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

node_export_dsv_node_export in modules/node_export_dsv/node_export_dsv.module
Implements hook_node_export().
node_export_node_export in ./node_export.node_code.inc
Implementation of hook_node_export().
node_export_serialize_node_export in modules/node_export_serialize/node_export_serialize.module
Implementation of hook_node_export().
node_export_xml_node_export in modules/node_export_xml/node_export_xml.module
Implementation of hook_node_export().
1 invocation of hook_node_export()
node_export in ./node_export.module
Export nodes.

File

./node_export.api.php, line 144
Documents Node export's hooks for api reference.

Code

function hook_node_export($nodes, $format) {

  // no example code
}