You are here

public function FeedsCommerceProductMultiProcessor::configForm in Commerce Feeds multitype 7

Override parent::configForm().

Overrides FeedsCommerceProductProcessor::configForm

File

plugins/FeedsCommerceProductMultiProcessor.inc, line 57
Class definition of FeedsCommerceProductMultiProcessor.

Class

FeedsCommerceProductMultiProcessor
Creates products of different types from feed items.

Code

public function configForm(&$form_state) {
  $form = parent::configForm($form_state);
  $form['bundle']['#title'] = t("Default product type");
  $form['bundle']['#description'] = t('Select the default product type for the products to be created. If a product type isn\'t provided by the source or is invalid this will be used. <strong>Note:</strong> Users with "import !feed_id feeds" permissions will be able to <strong>import</strong> products of the type selected here regardless of the product level permissions. Further, users with "clear !feed_id permissions" will be able to <strong>delete</strong> imported products regardless of their product level permissions.', array(
    '!feed_id' => $this->id,
  ));
  return $form;
}