You are here

public static function RestExport::create in Drupal 10

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

Overrides PathPluginBase::create

1 call to RestExport::create()
CollectRoutesTest::setUp in core/modules/rest/tests/src/Unit/CollectRoutesTest.php

File

core/modules/rest/src/Plugin/views/display/RestExport.php, line 139

Class

RestExport
The plugin that handles Data response callbacks for REST resources.

Namespace

Drupal\rest\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'), $container
    ->get('renderer'), $container
    ->getParameter('authentication_providers'), $container
    ->getParameter('serializer.format_providers'));
}