You are here

public function SecureLoginConfigForm::__construct in Secure Login 8

Creates a new SecureLoginConfigForm object.

Parameters

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

\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The module handler.

Overrides ConfigFormBase::__construct

File

src/Form/SecureLoginConfigForm.php, line 32

Class

SecureLoginConfigForm
Implements a SecureLogin Config form.

Namespace

Drupal\securelogin\Form

Code

public function __construct(ConfigFactoryInterface $config_factory, ModuleHandlerInterface $module_handler) {
  parent::__construct($config_factory);
  $this->moduleHandler = $module_handler;
}