You are here

public function DeveloperAttributesSettingsForm::__construct in Apigee Edge 8

DeveloperAttributesSettingsForm constructor.

Parameters

\Drupal\Core\Config\ConfigFactoryInterface $config_factory: Config factory service.

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

\Drupal\apigee_edge\Plugin\FieldStorageFormatManagerInterface $field_storage_format_manager: Field storage format manager service.

\Drupal\apigee_edge\FieldAttributeConverter $field_attribute_converter: Field name to attribute name converted service.

Overrides ConfigFormBase::__construct

File

src/Form/DeveloperAttributesSettingsForm.php, line 71

Class

DeveloperAttributesSettingsForm
Provides a form for changing the developer attribute related settings.

Namespace

Drupal\apigee_edge\Form

Code

public function __construct(ConfigFactoryInterface $config_factory, EntityFieldManagerInterface $entity_field_manager, FieldStorageFormatManagerInterface $field_storage_format_manager, FieldAttributeConverter $field_attribute_converter) {
  parent::__construct($config_factory);
  $this->fieldAttributeConverter = $field_attribute_converter;
  $this->entityFieldManager = $entity_field_manager;
  $this->fieldStorageFormatManager = $field_storage_format_manager;
}