You are here

public function FeedsEntityProcessorPropertyEntity::getMappingTarget in Feeds entity processor 7

Implements FeedsEntityProcessorPropertyInterface::getMappingTarget().

Overrides FeedsEntityProcessorPropertyDefault::getMappingTarget

File

src/Property/FeedsEntityProcessorPropertyEntity.php, line 88
Contains FeedsEntityProcessorPropertyEntity.

Class

FeedsEntityProcessorPropertyEntity
Handler for entity property.

Code

public function getMappingTarget() {
  $target = parent::getMappingTarget();
  $target['form_callbacks'][] = array(
    $this,
    'mappingFormCallback',
  );
  $target['summary_callbacks'][] = array(
    $this,
    'mappingSummaryCallback',
  );
  return $target;
}