public function Row::getRawDestination in Drupal 10
Same name and namespace in other branches
- 8 core/modules/migrate/src/Row.php \Drupal\migrate\Row::getRawDestination()
- 9 core/modules/migrate/src/Row.php \Drupal\migrate\Row::getRawDestination()
Returns the raw destination. Rarely necessary.
For example calling setDestination('foo/bar', 'baz') results in
$this->destination['foo']['bar'] = 'baz';
$this->rawDestination['foo/bar'] = 'baz';
Return value
array The raw destination values.
File
- core/
modules/ migrate/ src/ Row.php, line 291
Class
- Row
- Stores a row.
Namespace
Drupal\migrateCode
public function getRawDestination() {
return $this->rawDestination;
}