You are here

public function LayoutPluginSelector::__construct in Panels 8.4

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

LayoutPluginSelector constructor.

Parameters

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

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

File

src/Form/LayoutPluginSelector.php, line 48

Class

LayoutPluginSelector
Provides a form for selecting a layout plugin.

Namespace

Drupal\panels\Form

Code

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