You are here

public function Iterator::multiple in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/migrate/src/Plugin/migrate/process/Iterator.php \Drupal\migrate\Plugin\migrate\process\Iterator::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

core/modules/migrate/src/Plugin/migrate/process/Iterator.php, line 65
Contains \Drupal\migrate\Plugin\migrate\process\Iterator.

Class

Iterator
This plugin iterates and processes an array.

Namespace

Drupal\migrate\Plugin\migrate\process

Code

public function multiple() {
  return TRUE;
}