You are here

public static function Views::pluginManager in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/views/src/Views.php \Drupal\views\Views::pluginManager()

Returns the plugin manager for a certain views plugin type.

Parameters

string $type: The plugin type, for example filter.

Return value

\Drupal\views\Plugin\ViewsPluginManager

2 calls to Views::pluginManager()
DisplayPluginBase::initDisplay in core/modules/views/src/Plugin/views/display/DisplayPluginBase.php
Initializes the display plugin.
ViewExecutable::initDisplay in core/modules/views/src/ViewExecutable.php
Sets the display for this view and initializes the display handler.

File

core/modules/views/src/Views.php, line 99

Class

Views
Static service container wrapper for views.

Namespace

Drupal\views

Code

public static function pluginManager($type) {
  return \Drupal::service('plugin.manager.views.' . $type);
}