You are here

public function FormBase::setConfigFactory in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Form/FormBase.php \Drupal\Core\Form\FormBase::setConfigFactory()

Sets the config factory for this form.

Parameters

\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The config factory.

Return value

$this

1 call to FormBase::setConfigFactory()
ConfigFormBase::__construct in core/lib/Drupal/Core/Form/ConfigFormBase.php
Constructs a \Drupal\system\ConfigFormBase object.

File

core/lib/Drupal/Core/Form/FormBase.php, line 139

Class

FormBase
Provides a base class for forms.

Namespace

Drupal\Core\Form

Code

public function setConfigFactory(ConfigFactoryInterface $config_factory) {
  $this->configFactory = $config_factory;
  return $this;
}