public function MigrateIdMapInterface::delete in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/migrate/src/Plugin/MigrateIdMapInterface.php \Drupal\migrate\Plugin\MigrateIdMapInterface::delete()
Deletes the map and message entries for a given source record.
Parameters
array $source_id_values: The source identifier keyed values of the record, e.g. ['nid' => 5].
bool $messages_only: TRUE to only delete the migrate messages.
1 method overrides MigrateIdMapInterface::delete()
- Sql::delete in core/
modules/ migrate/ src/ Plugin/ migrate/ id_map/ Sql.php - Deletes the map and message entries for a given source record.
File
- core/
modules/ migrate/ src/ Plugin/ MigrateIdMapInterface.php, line 141 - Contains \Drupal\migrate\Plugin\MigrateIdMapInterface.
Class
- MigrateIdMapInterface
- Defines an interface for migrate ID mappings.
Namespace
Drupal\migrate\PluginCode
public function delete(array $source_id_values, $messages_only = FALSE);