function Row::getRawDestination
Same name in other branches
- 9 core/modules/migrate/src/Row.php \Drupal\migrate\Row::getRawDestination()
- 8.9.x core/modules/migrate/src/Row.php \Drupal\migrate\Row::getRawDestination()
- 10 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;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.