You are here

function hook_node_export_node_alter in Node export 6.2

Same name and namespace in other branches
  1. 6.3 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.

$method: 'export' for exports, and 'prepopulate' or 'save-edit' for imports depending on the method used.

3 functions implement 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.

filefield_node_export_node_alter in modules/node_export_file/node_export_file.module
Implementation of hook_node_export_node_alter().
image_node_export_node_alter in modules/node_export_file/node_export_file.module
Implementation of hook_node_export_node_alter().
upload_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 34
Documents node_export's hooks for api reference.

Code

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

  // no example code
}