public function Get::multiple in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/migrate/src/Plugin/migrate/process/Get.php \Drupal\migrate\Plugin\migrate\process\Get::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/ Get.php, line 69 - Contains \Drupal\migrate\Plugin\migrate\process\Get.
Class
- Get
- This plugin copies from the source to the destination.
Namespace
Drupal\migrate\Plugin\migrate\processCode
public function multiple() {
return $this->multiple;
}