You are here

public static function Type::create in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/node/src/Plugin/views/argument/Type.php \Drupal\node\Plugin\views\argument\Type::create()
  2. 9 core/modules/node/src/Plugin/views/argument/Type.php \Drupal\node\Plugin\views\argument\Type::create()

File

core/modules/node/src/Plugin/views/argument/Type.php, line 44

Class

Type
Argument handler to accept a node type.

Namespace

Drupal\node\Plugin\views\argument

Code

public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
  $entity_type_manager = $container
    ->get('entity_type.manager');
  return new static($configuration, $plugin_id, $plugin_definition, $entity_type_manager
    ->getStorage('node_type'));
}