You are here

public function ExifSettingsForm::__construct in Exif 8.2

Same name and namespace in other branches
  1. 8 src/Controller/ExifSettingsForm.php \Drupal\exif\Controller\ExifSettingsForm::__construct()

Constructs the ExifSettingsForm object.

Parameters

\Drupal\Core\Config\ConfigFactoryInterface $configFactory: The configuration factory.

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

Overrides ConfigFormBase::__construct

File

src/Controller/ExifSettingsForm.php, line 38

Class

ExifSettingsForm
Manage Settings forms.

Namespace

Drupal\exif\Controller

Code

public function __construct(ConfigFactoryInterface $configFactory, EntityTypeManagerInterface $entity_type_manager) {
  ConfigFormBase::__construct($configFactory);
  $this->entityTypeManager = $entity_type_manager;
}