You are here

public function CommerceProductInlineEntityFormController::createClone in Inline Entity Form 7

Overrides EntityInlineEntityFormController::createClone().

Overrides EntityInlineEntityFormController::createClone

File

includes/commerce_product.inline_entity_form.inc, line 343
Defines the inline entity form controller for Commerce Products.

Class

CommerceProductInlineEntityFormController
@file Defines the inline entity form controller for Commerce Products.

Code

public function createClone($entity) {
  $cloned_entity = parent::createClone($entity);
  $cloned_entity->sku = NULL;
  return $cloned_entity;
}