You are here

public function LayoutChangeRegions::__construct in Panels 8.3

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

LayoutChangeRegions constructor.

Parameters

\Drupal\layout_plugin\Plugin\Layout\LayoutPluginManagerInterface $manager: The layout plugin manager

\Drupal\user\SharedTempStoreFactory $tempstore: The tempstore factory.

File

src/Form/LayoutChangeRegions.php, line 49

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;
}