You are here

public function Path::isMutable in Feeds 8.3

Returns if the target is mutable.

Return value

bool True if the target is mutable. False otherwise.

Overrides FieldTargetBase::isMutable

File

src/Feeds/Target/Path.php, line 56

Class

Path
Defines a path field mapper.

Namespace

Drupal\feeds\Feeds\Target

Code

public function isMutable() {

  // The path field is set to "computed", which evaluates to "read-only".
  // Ignore the fact that paths are read-only and mark it as mutable.
  return TRUE;
}