You are here

function hook_node_export_node_alter in Node export 6.3

Same name and namespace in other branches
  1. 6.2 node_export.api.php \hook_node_export_node_alter()
  2. 7.3 node_export.api.php \hook_node_export_node_alter()

Manipulate a node on import/export.

Parameters

&$node: The node to alter.

$original_node: The unaltered node.

$op: 'import', or 'export'.

1 function implements hook_node_export_node_alter()

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

node_export_file_node_export_node_alter in modules/node_export_file/node_export_file.module
Implementation of hook_node_export_node_alter().

File

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

Code

function hook_node_export_node_alter(&$node, $original_node, $op) {

  // no example code
}