public function Row::removeDestinationProperty in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/migrate/src/Row.php \Drupal\migrate\Row::removeDestinationProperty()
Removes destination property.
Parameters
string $property: The name of the destination property.
File
- core/
modules/ migrate/ src/ Row.php, line 231 - Contains \Drupal\migrate\Row.
Class
- Row
- Stores a row.
Namespace
Drupal\migrateCode
public function removeDestinationProperty($property) {
unset($this->rawDestination[$property]);
NestedArray::unsetValue($this->destination, explode(static::PROPERTY_SEPARATOR, $property));
}