You are here

public static function PathPluginBase::create in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views/src/Plugin/views/display/PathPluginBase.php \Drupal\views\Plugin\views\display\PathPluginBase::create()
  2. 10 core/modules/views/src/Plugin/views/display/PathPluginBase.php \Drupal\views\Plugin\views\display\PathPluginBase::create()

Creates an instance of the plugin.

Parameters

\Symfony\Component\DependencyInjection\ContainerInterface $container: The container to pull out services used in the plugin.

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.

Return value

static Returns an instance of this plugin.

Overrides PluginBase::create

3 methods override PathPluginBase::create()
Feed::create in core/modules/views/src/Plugin/views/display/Feed.php
Creates an instance of the plugin.
Page::create in core/modules/views/src/Plugin/views/display/Page.php
Creates an instance of the plugin.
RestExport::create in core/modules/rest/src/Plugin/views/display/RestExport.php
Creates an instance of the plugin.

File

core/modules/views/src/Plugin/views/display/PathPluginBase.php, line 67

Class

PathPluginBase
The base display plugin for path/callbacks. This is used for pages and feeds.

Namespace

Drupal\views\Plugin\views\display

Code

public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
  return new static($configuration, $plugin_id, $plugin_definition, $container
    ->get('router.route_provider'), $container
    ->get('state'));
}