function WizardFormController::__construct
Same name in other branches
- 8.x-3.x src/Controller/WizardFormController.php \Drupal\ctools\Controller\WizardFormController::__construct()
Parameters
\Symfony\Component\HttpKernel\Controller\ArgumentResolverInterface $argument_resolver: The argument resolver.
\Drupal\Core\Form\FormBuilderInterface $form_builder: The form builder.
\Drupal\ctools\Wizard\WizardFactoryInterface $wizard_factory: The wizard factory.
Overrides FormController::__construct
1 call to WizardFormController::__construct()
- WizardEntityFormController::__construct in src/
Controller/ WizardEntityFormController.php
1 method overrides WizardFormController::__construct()
- WizardEntityFormController::__construct in src/
Controller/ WizardEntityFormController.php
File
-
src/
Controller/ WizardFormController.php, line 46
Class
- WizardFormController
- Wrapping controller for wizard forms that serve as the main page body.
Namespace
Drupal\ctools\ControllerCode
public function __construct(ArgumentResolverInterface $argument_resolver, FormBuilderInterface $form_builder, WizardFactoryInterface $wizard_factory) {
parent::__construct($argument_resolver, $form_builder);
$this->wizardFactory = $wizard_factory;
}