You are here

public function ProcessPluginBase::multiple in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/migrate/src/ProcessPluginBase.php \Drupal\migrate\ProcessPluginBase::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 MigrateProcessInterface::multiple

3 methods override ProcessPluginBase::multiple()
Explode::multiple in core/modules/migrate/src/Plugin/migrate/process/Explode.php
Indicates whether the returned value requires multiple handling.
Get::multiple in core/modules/migrate/src/Plugin/migrate/process/Get.php
Indicates whether the returned value requires multiple handling.
SubProcess::multiple in core/modules/migrate/src/Plugin/migrate/process/SubProcess.php
Indicates whether the returned value requires multiple handling.

File

core/modules/migrate/src/ProcessPluginBase.php, line 52

Class

ProcessPluginBase
The base class for all migrate process plugins.

Namespace

Drupal\migrate

Code

public function multiple() {
  return FALSE;
}