You are here

public function Page::__construct in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/views/src/Plugin/views/display/Page.php \Drupal\views\Plugin\views\display\Page::__construct()

Constructs a Page object.

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\Routing\RouteProviderInterface $route_provider: The route provider.

\Drupal\Core\State\StateInterface $state: The state key value store.

\Drupal\Core\Entity\EntityStorageInterface $menu_storage: The menu storage.

\Drupal\Core\Menu\MenuParentFormSelectorInterface $parent_form_selector: The parent form selector service.

Overrides PathPluginBase::__construct

File

core/modules/views/src/Plugin/views/display/Page.php, line 78

Class

Page
The plugin that handles a full page.

Namespace

Drupal\views\Plugin\views\display

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, RouteProviderInterface $route_provider, StateInterface $state, EntityStorageInterface $menu_storage, MenuParentFormSelectorInterface $parent_form_selector = NULL) {
  parent::__construct($configuration, $plugin_id, $plugin_definition, $route_provider, $state);
  $this->menuStorage = $menu_storage;
  if (!$parent_form_selector) {
    @trigger_error('Calling ' . __METHOD__ . '() without the $parent_form_selector argument is deprecated in drupal:9.3.0 and the $parent_form_selector argument will be required in drupal:10.0.0. See https://www.drupal.org/node/3027559', E_USER_DEPRECATED);
    $parent_form_selector = \Drupal::service('menu.parent_form_selector');
  }
  $this->parentFormSelector = $parent_form_selector;
}