You are here

function node_convert_load_includes in Node Convert 7

Loads include files, that execute various behaviors on node conversion.

These can also be defined by other modules.

1 call to node_convert_load_includes()
node_convert_invoke_all in ./node_convert.module
Instead of using module_invoke_all, we have to use the ctools pattern, because the module hooks are loaded dynamically by CTools.

File

./node_convert.module, line 559

Code

function node_convert_load_includes() {
  ctools_include('plugins');
  return ctools_plugin_api_include('node_convert', NODE_CONVERT_BEHAVIOR_PLUGIN, node_convert_api_minimum_version(), node_convert_api_version());
}