public function Explode::multiple in Drupal 10
Same name and namespace in other branches
- 8 core/modules/migrate/src/Plugin/migrate/process/Explode.php \Drupal\migrate\Plugin\migrate\process\Explode::multiple()
- 9 core/modules/migrate/src/Plugin/migrate/process/Explode.php \Drupal\migrate\Plugin\migrate\process\Explode::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/ Explode.php, line 128
Class
- Explode
- Splits the source string into an array of strings, using a delimiter.
Namespace
Drupal\migrate\Plugin\migrate\processCode
public function multiple() {
return TRUE;
}