You are here

public function ValidatableConfigFormBase::__construct in CDN 8.3

Constructs a \Drupal\system\ConfigFormBase object.

Parameters

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

Overrides ConfigFormBase::__construct

1 call to ValidatableConfigFormBase::__construct()
CdnSettingsForm::__construct in cdn_ui/src/Form/CdnSettingsForm.php
Constructs a \Drupal\system\ConfigFormBase object.
1 method overrides ValidatableConfigFormBase::__construct()
CdnSettingsForm::__construct in cdn_ui/src/Form/CdnSettingsForm.php
Constructs a \Drupal\system\ConfigFormBase object.

File

cdn_ui/src/Form/ValidatableConfigFormBase.php, line 38

Class

ValidatableConfigFormBase
@todo Lift the config validation logic out of this module into core.

Namespace

Drupal\cdn_ui\Form

Code

public function __construct(ConfigFactoryInterface $config_factory, TypedConfigManagerInterface $typed_config_manager) {
  $this->typedConfigManager = $typed_config_manager;
  parent::__construct($config_factory);
}