You are here

public function SamlauthMappingListForm::__construct in SAML Authentication 8.3

Same name and namespace in other branches
  1. 4.x modules/samlauth_user_fields/src/Form/SamlauthMappingListForm.php \Drupal\samlauth_user_fields\Form\SamlauthMappingListForm::__construct()

SamlauthMappingListForm constructor.

Parameters

\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The config factory.

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

Overrides ConfigFormBase::__construct

File

modules/samlauth_user_fields/src/Form/SamlauthMappingListForm.php, line 35

Class

SamlauthMappingListForm
Displays the list of attribute-field mappings; edits related configuration.

Namespace

Drupal\samlauth_user_fields\Form

Code

public function __construct(ConfigFactoryInterface $config_factory, EntityFieldManagerInterface $entity_field_manager) {
  parent::__construct($config_factory);
  $this->entityFieldManager = $entity_field_manager;
}