function Migration::set
Same name in other branches
- 9 core/modules/migrate/src/Plugin/Migration.php \Drupal\migrate\Plugin\Migration::set()
- 10 core/modules/migrate/src/Plugin/Migration.php \Drupal\migrate\Plugin\Migration::set()
- 11.x core/modules/migrate/src/Plugin/Migration.php \Drupal\migrate\Plugin\Migration::set()
1 method overrides Migration::set()
- TestMigrationMock::set in core/
modules/ migrate/ tests/ src/ Unit/ MigrationPluginManagerTest.php
File
-
core/
modules/ migrate/ src/ Plugin/ Migration.php, line 553
Class
- Migration
- Defines the Migration plugin.
Namespace
Drupal\migrate\PluginCode
public function set($property_name, $value) {
if ($property_name == 'source') {
// Invalidate the source plugin.
unset($this->sourcePlugin);
}
elseif ($property_name === 'destination') {
// Invalidate the destination plugin.
unset($this->destinationPlugin);
}
$this->{$property_name} = $value;
return $this;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.