You are here

public function Serializer::__construct in Drupal 10

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

Constructs a Plugin object.

Overrides PluginBase::__construct

File

core/modules/rest/src/Plugin/views/style/Serializer.php, line 74

Class

Serializer
The style plugin for serialized output formats.

Namespace

Drupal\rest\Plugin\views\style

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, SerializerInterface $serializer, array $serializer_formats, array $serializer_format_providers) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->definition = $plugin_definition + $configuration;
  $this->serializer = $serializer;
  $this->formats = $serializer_formats;
  $this->formatProviders = $serializer_format_providers;
}