You are here

public function FieldTargetBase::isMutable in Feeds 8.3

Returns if the target is mutable.

Return value

bool True if the target is mutable. False otherwise.

Overrides TargetInterface::isMutable

1 call to FieldTargetBase::isMutable()
FieldTargetBase::getSummary in src/Plugin/Type/Target/FieldTargetBase.php
Returns the summary for a target.
1 method overrides FieldTargetBase::isMutable()
Path::isMutable in src/Feeds/Target/Path.php
Returns if the target is mutable.

File

src/Plugin/Type/Target/FieldTargetBase.php, line 108

Class

FieldTargetBase
Helper class for field mappers.

Namespace

Drupal\feeds\Plugin\Type\Target

Code

public function isMutable() {
  return !$this->targetDefinition
    ->getFieldDefinition()
    ->isReadOnly();
}