You are here

public function DomainEntityUi::__construct in Domain Access Entity 8

Creates a new DomainEntityUi object.

Parameters

\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The factory for configuration objects.

\Drupal\domain_entity\DomainEntityMapper $mapper: The domain entity mapper.

Overrides ConfigFormBase::__construct

File

src/Form/DomainEntityUi.php, line 32

Class

DomainEntityUi
Provides a form to configure domain field mappings.

Namespace

Drupal\domain_entity\Form

Code

public function __construct(ConfigFactoryInterface $config_factory, DomainEntityMapper $mapper) {
  parent::__construct($config_factory);
  $this->mapper = $mapper;
}