You are here

protected function Serializer::getFormatOptions 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::getFormatOptions()
  2. 9 core/modules/rest/src/Plugin/views/style/Serializer.php \Drupal\rest\Plugin\views\style\Serializer::getFormatOptions()

Returns an array of format options.

Return value

string[] An array of format options. Both key and value are the same.

1 call to Serializer::getFormatOptions()
Serializer::buildOptionsForm in core/modules/rest/src/Plugin/views/style/Serializer.php
Provide a form to edit options for this plugin.

File

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

Class

Serializer
The style plugin for serialized output formats.

Namespace

Drupal\rest\Plugin\views\style

Code

protected function getFormatOptions() {
  $formats = array_keys($this->formatProviders);
  return array_combine($formats, $formats);
}