You are here

public function StrReplace::multiple in Migrate Plus 8.5

Same name and namespace in other branches
  1. 8.4 src/Plugin/migrate/process/StrReplace.php \Drupal\migrate_plus\Plugin\migrate\process\StrReplace::multiple()

Indicates whether the returned value requires multiple handling.

Return value

bool TRUE when the returned value contains a list of values to be processed. For example, when the 'source' property is a string and the value found is an array.

Overrides ProcessPluginBase::multiple

File

src/Plugin/migrate/process/StrReplace.php, line 109

Class

StrReplace
Uses the str_replace() method on a source string.

Namespace

Drupal\migrate_plus\Plugin\migrate\process

Code

public function multiple() {
  return $this->multiple;
}