You are here

function hook_node_import_types in Node import 5

Same name and namespace in other branches
  1. 6 node_import.api.php \hook_node_import_types()

Returns a list of node types which have full support for importing provided by other hooks.

Return value

An associative array of node types containting the value for the type child of the node object => human-readable name.

4 functions implement hook_node_import_types()

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

flexinode_node_import_types in supported/flexinode.inc
Implementation of hook_node_import_types().
node_node_import_types in supported/node.inc
Implementation of hook_node_import_types().
tangible_node_import_types in supported/ecommerce/tangible.inc
Implementation of hook_node_import_types().
userlink_node_import_types in supported/userlink.inc
Implementation of hook_node_import_types().
1 invocation of hook_node_import_types()
node_import_types in ./node_import.api.inc
Get a list of supported nodes types.

File

docs/node_import_hook_docs.php, line 19
Documentation for hooks provided by the node_import module.

Code

function hook_node_import_types() {
  return array(
    'story' => t('Story'),
  );
}