Same name and namespace in other branches
  1. 8.9.x core/modules/migrate/src/Row.php \Drupal\migrate\Row::getRawDestination()
  2. 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\migrate

Code

public function getRawDestination() {
  return $this->rawDestination;
}