You are here

public function LayoutChangeRegions::__construct in Panels 8.4

Same name and namespace in other branches
  1. 8.3 src/Form/LayoutChangeRegions.php \Drupal\panels\Form\LayoutChangeRegions::__construct()

LayoutChangeRegions constructor.

Parameters

\Drupal\Core\Layout\LayoutPluginManagerInterface $manager: The layout plugin manager.

\Drupal\Core\TempStore\SharedTempStoreFactory $tempstore: The tempstore factory.

File

src/Form/LayoutChangeRegions.php, line 48

Class

LayoutChangeRegions
Provides a form for mapping old regions into the regions of a new layout.

Namespace

Drupal\panels\Form

Code

public function __construct(LayoutPluginManagerInterface $manager, SharedTempStoreFactory $tempstore) {
  $this->manager = $manager;
  $this->tempstore = $tempstore;
}