You are here

public function CasAttributesSettings::__construct in CAS Attributes 8

Same name and namespace in other branches
  1. 2.x src/Form/CasAttributesSettings.php \Drupal\cas_attributes\Form\CasAttributesSettings::__construct()

Constructs a \Drupal\cas\Form\CasSettings object.

Parameters

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

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

Overrides ConfigFormBase::__construct

File

src/Form/CasAttributesSettings.php, line 37

Class

CasAttributesSettings
CAS Attributes settings form.

Namespace

Drupal\cas_attributes\Form

Code

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