public function Page::__construct in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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.
Overrides PathPluginBase::__construct
File
- core/
modules/ views/ src/ Plugin/ views/ display/ Page.php, line 73 - Contains \Drupal\views\Plugin\views\display\Page.
Class
- Page
- The plugin that handles a full page.
Namespace
Drupal\views\Plugin\views\displayCode
public function __construct(array $configuration, $plugin_id, $plugin_definition, RouteProviderInterface $route_provider, StateInterface $state, EntityStorageInterface $menu_storage) {
parent::__construct($configuration, $plugin_id, $plugin_definition, $route_provider, $state);
$this->menuStorage = $menu_storage;
}