You are here

public function LayoutPluginSelector::__construct in Panels 8.3

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

LayoutPluginSelector constructor.

Parameters

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

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

File

src/Form/LayoutPluginSelector.php, line 49

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