public function SpiChangeForm::__construct in Acquia Connector 8
Same name and namespace in other branches
- 8.2 src/Form/SpiChangeForm.php \Drupal\acquia_connector\Form\SpiChangeForm::__construct()
- 3.x src/Form/SpiChangeForm.php \Drupal\acquia_connector\Form\SpiChangeForm::__construct()
Constructs a \Drupal\acquia_connector\Form object.
Parameters
\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The factory for configuration objects.
\Drupal\Core\State\State $state: The State handler.
Overrides ConfigFormBase::__construct
File
- src/
Form/ SpiChangeForm.php, line 33
Class
- SpiChangeForm
- Change SPI Data form.
Namespace
Drupal\acquia_connector\FormCode
public function __construct(ConfigFactoryInterface $config_factory, State $state) {
parent::__construct($config_factory);
$this->state = $state;
}