You are here

commerce_feedsmulti.module in Commerce Feeds multitype 7

Provides product/stock import additional functionality for ETME.

File

commerce_feedsmulti.module
View source
<?php

/**
 * @file
 * Provides product/stock import additional functionality for ETME.
 */

/**
 * Implements hook_feeds_plugins().
 */
function commerce_feedsmulti_feeds_plugins() {
  return array(
    'FeedsCommerceProductMultiProcessor' => array(
      'name' => 'Commerce Product multitype processor',
      'description' => 'Create and update various types of commerce products from parsed content.',
      'handler' => array(
        'parent' => 'FeedsCommerceProductProcessor',
        'class' => 'FeedsCommerceProductMultiProcessor',
        'file' => 'FeedsCommerceProductMultiProcessor.inc',
        'path' => drupal_get_path('module', 'commerce_feedsmulti') . '/plugins',
      ),
    ),
  );
}

Functions