You are here

public function Splice::multiple in Multiversion 8

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 Explode::multiple

File

src/Plugin/migrate/process/Splice.php, line 37

Class

Splice
Perform custom value transformations.

Namespace

Drupal\multiversion\Plugin\migrate\process

Code

public function multiple() {
  return TRUE;
}