You are here

protected function ContentHubEntityTypeConfig::entityFieldManager in Acquia Content Hub 8

Gets the entity field manager service.

Return value

\Drupal\Core\Entity\EntityFieldManagerInterface Returns the EntityFieldManager service.

1 call to ContentHubEntityTypeConfig::entityFieldManager()
ContentHubEntityTypeConfig::calculateDependencies in src/Entity/ContentHubEntityTypeConfig.php
Calculates dependencies and stores them in the dependency property.

File

src/Entity/ContentHubEntityTypeConfig.php, line 277

Class

ContentHubEntityTypeConfig
Defines a ContentHubEntityTypeConfig configuration entity class.

Namespace

Drupal\acquia_contenthub\Entity

Code

protected function entityFieldManager() {
  return \Drupal::getContainer()
    ->get('entity_field.manager');
}