You are here

public function LayoutChangeSettings::__construct in Panels 8.3

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

LayoutChangeSettings constructor.

Parameters

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

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

File

src/Form/LayoutChangeSettings.php, line 54

Class

LayoutChangeSettings
Provides a form for configuring a layout's settings.

Namespace

Drupal\panels\Form

Code

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