You are here

public function BaseFieldConfigFromBase::__construct in Apigee Edge 8

BaseFieldConfigFromBase constructor.

Parameters

\Drupal\Core\Entity\EntityFieldManagerInterface $entity_field_manager: The entity field manager service.

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager service.

File

src/Form/BaseFieldConfigFromBase.php, line 56

Class

BaseFieldConfigFromBase
Base form for configuring base fields on Apigee Edge entities.

Namespace

Drupal\apigee_edge\Form

Code

public function __construct(EntityFieldManagerInterface $entity_field_manager, EntityTypeManagerInterface $entity_type_manager) {
  $this->entityFieldManager = $entity_field_manager;
  $this->entityTypeManager = $entity_type_manager;
}