interface HighestIdInterface in Drupal 9
Same name and namespace in other branches
- 8 core/modules/migrate/src/Audit/HighestIdInterface.php \Drupal\migrate\Audit\HighestIdInterface
- 10 core/modules/migrate/src/Audit/HighestIdInterface.php \Drupal\migrate\Audit\HighestIdInterface
Defines an interface for destination and ID maps which track a highest ID.
When implemented by destination plugins, getHighestId() should return the highest ID of the destination entity type that exists in the system. So, for example, the entity:node plugin should return the highest node ID that exists, regardless of whether it was created by a migration.
When implemented by an ID map, getHighestId() should return the highest migrated ID of the destination entity type.
Hierarchy
- interface \Drupal\migrate\Audit\HighestIdInterface
Expanded class hierarchy of HighestIdInterface
All classes that implement HighestIdInterface
2 files declare their use of HighestIdInterface
- EntityContentBase.php in core/
modules/ migrate/ src/ Plugin/ migrate/ destination/ EntityContentBase.php - Sql.php in core/
modules/ migrate/ src/ Plugin/ migrate/ id_map/ Sql.php
File
- core/
modules/ migrate/ src/ Audit/ HighestIdInterface.php, line 16
Namespace
Drupal\migrate\AuditView source
interface HighestIdInterface {
/**
* Returns the highest ID tracked by the implementing plugin.
*
* @return int
* The highest ID.
*/
public function getHighestId();
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
HighestIdInterface:: |
public | function | Returns the highest ID tracked by the implementing plugin. | 2 |