function tangible_node_import_fields in Node import 5
Implementation of hook_node_import_fields().
File
- supported/
ecommerce/ tangible.inc, line 21 - Support file for tangible.module of the e-commerce module bundle.
Code
function tangible_node_import_fields($type) {
if ($type == 'tangible') {
return array(
'manage_stock' => t('Shippable product: Inventory management enabled?'),
'stock' => t('Shippable product: Number of items in stock'),
'availability' => t('Shippable product: Availability estimate'),
);
}
}