Node import hooks in Node import 6
File
- ./
node_import.inc, line 100 - Public API of the Node import module.
Functions
Name | Location | Description |
---|---|---|
hook_node_import_defaults |
./ |
List the FAPI elements to set the default values for each field. |
hook_node_import_defaults_alter |
./ |
Change the FAPI elements to set the default values for each field. |
hook_node_import_fields |
./ |
List the available fields for given content type. |
hook_node_import_fields_alter |
./ |
Change the list of available fields for given content type. |
hook_node_import_format_options |
./ |
This hook allows users to change some of the options the user is presented with on the wizard form. |
hook_node_import_format_options_alter |
./ |
Change the format options. |
hook_node_import_options |
./ |
List the FAPI elements to set the options for each field. |
hook_node_import_options_alter |
./ |
Change the FAPI elements to set the options for each field. |
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. |
hook_node_import_task |
./ |
This hook is invoked when a task is loaded, inserted, deleted, resumed or suspended. |
hook_node_import_types |
./ |
List the available content types. |
hook_node_import_types_alter |
./ |
Change the list of available content types. |
hook_node_import_values |
./ |
List the (static) values to use to create the content type. |
hook_node_import_values_alter |
./ |
Change the list of values to use to create the content type. |
node_import_defaults |
./ |
Returns a list of default (form elements). |
node_import_fields |
./ |
Returns a list of available content fields for given node_import type. |
node_import_format_options |
./ |
Get a list of options for different stuff presented to the user in the wizard form such as 'record separators', ... |
node_import_options |
./ |
Returns a list of options (form elements). |
node_import_types |
./ |
Returns a list of available content types. |
node_import_values |
./ |
Create an array of values to submit to the form. |