You are here

protected static function EntityLegalDocumentVersion::getEntityTypeId in Entity Legal 4.0.x

Same name and namespace in other branches
  1. 8.2 src/Plugin/migrate/destination/EntityLegalDocumentVersion.php \Drupal\entity_legal\Plugin\migrate\destination\EntityLegalDocumentVersion::getEntityTypeId()
  2. 3.0.x src/Plugin/migrate/destination/EntityLegalDocumentVersion.php \Drupal\entity_legal\Plugin\migrate\destination\EntityLegalDocumentVersion::getEntityTypeId()

Finds the entity type from configuration or plugin ID.

Parameters

string $plugin_id: The plugin ID.

Return value

string The entity type.

Overrides EntityFieldDefinitionTrait::getEntityTypeId

File

src/Plugin/migrate/destination/EntityLegalDocumentVersion.php, line 20

Class

EntityLegalDocumentVersion
Drupal entity legal document version migration destination plugin.

Namespace

Drupal\entity_legal\Plugin\migrate\destination

Code

protected static function getEntityTypeId($plugin_id) {
  return 'entity_legal_document_version';
}