You are here

protected static function EntityFieldStorageConfig::getEntityTypeId in Drupal 8

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

1 call to EntityFieldStorageConfig::getEntityTypeId()
EntityFieldStorageConfig::create in core/modules/migrate_drupal/src/Plugin/migrate/destination/EntityFieldStorageConfig.php
Creates an instance of the plugin.

File

core/modules/migrate_drupal/src/Plugin/migrate/destination/EntityFieldStorageConfig.php, line 100

Class

EntityFieldStorageConfig
Deprecated. Destination with Drupal specific config dependencies.

Namespace

Drupal\migrate_drupal\Plugin\migrate\destination

Code

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