You are here

public function LayoutParagraphsSettingsForm::__construct in Layout Paragraphs 1.0.x

Same name and namespace in other branches
  1. 2.0.x src/Form/LayoutParagraphsSettingsForm.php \Drupal\layout_paragraphs\Form\LayoutParagraphsSettingsForm::__construct()

SettingsForm constructor.

Parameters

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

\Drupal\Core\Config\TypedConfigManagerInterface $typedConfigManager: The typed config service.

Overrides ConfigFormBase::__construct

File

src/Form/LayoutParagraphsSettingsForm.php, line 31

Class

LayoutParagraphsSettingsForm
Class LayoutParagraphsSettingsForm.

Namespace

Drupal\layout_paragraphs\Form

Code

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