public function PanelizerWizardContextForm::__construct in Panelizer 8.3
Same name and namespace in other branches
- 8.5 src/Form/PanelizerWizardContextForm.php \Drupal\panelizer\Form\PanelizerWizardContextForm::__construct()
ManageContext constructor.
Parameters
\Drupal\Core\TypedData\TypedDataManagerInterface $typed_data_manager: The typed data manager.
\Drupal\Core\Form\FormBuilderInterface $form_builder: The form builder.
\Drupal\user\SharedTempStoreFactory $tempstore_factory: Shared user tempstore factory.
Overrides ManageContext::__construct
File
- src/
Form/ PanelizerWizardContextForm.php, line 52
Class
- PanelizerWizardContextForm
- Simple wizard step form.
Namespace
Drupal\panelizer\FormCode
public function __construct(TypedDataManagerInterface $typed_data_manager, FormBuilderInterface $form_builder, SharedTempStoreFactory $tempstore_factory) {
parent::__construct($typed_data_manager, $form_builder);
$this->tempstoreFactory = $tempstore_factory;
}