You are here

function product_node_import_static in Node import 5

Implementation of hook_node_import_static().

File

supported/ecommerce/product.inc, line 117
Support file for product.module of the e-commerce module bundle.

Code

function product_node_import_static($type) {
  if (_product_node_import_is_product($type) && $type != 'product') {
    return array_merge(array(
      'type' => 'product',
      'ptype' => $type,
    ), module_invoke_all('node_import_static', 'product'));
  }
}