You are here

public function LayoutChangeSettings::__construct in Panels 8.4

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

LayoutChangeSettings constructor.

Parameters

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

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

File

src/Form/LayoutChangeSettings.php, line 53

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