You are here

public function FeedsEntityProcessorPropertyDefault::setValue in Feeds entity processor 7

Implements FeedsEntityProcessorPropertyInterface::setValue().

Overrides FeedsEntityProcessorPropertyInterface::setValue

3 calls to FeedsEntityProcessorPropertyDefault::setValue()
FeedsEntityProcessorPropertyDate::setValue in src/Property/FeedsEntityProcessorPropertyDate.php
Implements FeedsEntityProcessorPropertyInterface::setValue().
FeedsEntityProcessorPropertyEntity::setValue in src/Property/FeedsEntityProcessorPropertyEntity.php
Implements FeedsEntityProcessorPropertyInterface::setValue().
FeedsEntityProcessorPropertyEntityType::setValue in src/Property/FeedsEntityProcessorPropertyEntityType.php
Implements FeedsEntityProcessorPropertyInterface::setValue().
3 methods override FeedsEntityProcessorPropertyDefault::setValue()
FeedsEntityProcessorPropertyDate::setValue in src/Property/FeedsEntityProcessorPropertyDate.php
Implements FeedsEntityProcessorPropertyInterface::setValue().
FeedsEntityProcessorPropertyEntity::setValue in src/Property/FeedsEntityProcessorPropertyEntity.php
Implements FeedsEntityProcessorPropertyInterface::setValue().
FeedsEntityProcessorPropertyEntityType::setValue in src/Property/FeedsEntityProcessorPropertyEntityType.php
Implements FeedsEntityProcessorPropertyInterface::setValue().

File

src/Property/FeedsEntityProcessorPropertyDefault.php, line 177
Contains FeedsEntityProcessorPropertyDefault.

Class

FeedsEntityProcessorPropertyDefault
Default handler for entity properties.

Code

public function setValue($value, array $mapping) {
  $this
    ->entityWrapper()
    ->get($this
    ->getName())
    ->set($value);
}