You are here

public function PanelizerFieldPanelsStorage::__construct in Panelizer 8.4

Same name and namespace in other branches
  1. 8.5 src/Plugin/PanelsStorage/PanelizerFieldPanelsStorage.php \Drupal\panelizer\Plugin\PanelsStorage\PanelizerFieldPanelsStorage::__construct()
  2. 8.3 src/Plugin/PanelsStorage/PanelizerFieldPanelsStorage.php \Drupal\panelizer\Plugin\PanelsStorage\PanelizerFieldPanelsStorage::__construct()

Constructs a PanelizerDefaultPanelsStorage.

Parameters

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin_id for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager.

\Drupal\panelizer\PanelizerInterface $panelizer: The Panelizer service.

File

src/Plugin/PanelsStorage/PanelizerFieldPanelsStorage.php, line 50

Class

PanelizerFieldPanelsStorage
Panels storage service that stores Panels displays in the Panelizer field.

Namespace

Drupal\panelizer\Plugin\PanelsStorage

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entity_type_manager, PanelizerInterface $panelizer) {
  $this->entityTypeManager = $entity_type_manager;
  $this->panelizer = $panelizer;
  parent::__construct($configuration, $plugin_id, $plugin_definition);
}