You are here

public function PanelizerWizardContextForm::__construct in Panelizer 8.5

Same name and namespace in other branches
  1. 8.3 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\ctools\TypedDataResolver $typed_data_resolver: The typed data resolver.

\Drupal\Core\TempStore\SharedTempStoreFactory $tempstore_factory: Shared user tempstore factory.

Overrides ManageContext::__construct

File

src/Form/PanelizerWizardContextForm.php, line 57

Class

PanelizerWizardContextForm
Simple wizard step form.

Namespace

Drupal\panelizer\Form

Code

public function __construct(TypedDataManagerInterface $typed_data_manager, FormBuilderInterface $form_builder, TypedDataResolver $typed_data_resolver, SharedTempStoreFactory $tempstore_factory) {
  parent::__construct($typed_data_manager, $form_builder, $typed_data_resolver);
  $this->tempstoreFactory = $tempstore_factory;
}