You are here

protected static function EntityFieldStorageConfig::getEntityTypeId in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/migrate_drupal/src/Plugin/migrate/destination/EntityFieldStorageConfig.php \Drupal\migrate_drupal\Plugin\migrate\destination\EntityFieldStorageConfig::getEntityTypeId()

Finds the entity type from configuration or plugin id.

Parameters

string $plugin_id: The plugin id.

Return value

string The entity type.

Overrides Entity::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 89
Contains \Drupal\migrate_drupal\Plugin\migrate\destination\EntityFieldStorageConfig.

Class

EntityFieldStorageConfig
Destination with Drupal specific config dependencies.

Namespace

Drupal\migrate_drupal\Plugin\migrate\destination

Code

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