You are here

function hook_node_import_postprocess in Node import 6

Same name and namespace in other branches
  1. 5 docs/node_import_hook_docs.php \hook_node_import_postprocess()

This hook is invoked after the form to create the $type has been submitted. You can use this hook to do stuff after the node has (or has not) been created, eg use the nid to store some additional information in the db tables.

Parameters

$type: String. The content type as returned as a key by hook_node_import_types().

$values: Array of the submitted values.

$options: Array of filled in options.

$preview: Boolean.

Return value

Nothing.

Related topics

3 functions implement hook_node_import_postprocess()

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

book_node_import_postprocess in supported/book.inc
Implementation of hook_node_import_postprocess().
token_node_import_postprocess in supported/token/token.inc
Implementation of hook_node_import_postprocess().
uc_product_minmax_node_import_postprocess in supported/uc_product_minmax/uc_product_minmax.inc
Implementation of hook_node_import_postprocess().
1 invocation of hook_node_import_postprocess()
node_import_create in ./node_import.inc
Create a new object of specified $type.

File

./node_import.api.php, line 528
Explanation of the Node import hooks.

Code

function hook_node_import_postprocess($type, $values, $options, $preview) {
}