You are here

function product_node_import_global in Node import 5

Implementation of hook_node_import_global().

File

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

Code

function product_node_import_global($type, $global_values) {
  if (_product_node_import_is_product($type) && $type != 'product') {
    return module_invoke_all('node_import_global', 'product', $global_values);
  }
}