public function RestExport::getMimeType

Gets the mime type.

This will return any overridden mime type, otherwise returns the mime type from the request.

Return value

string The response mime type. E.g. 'application/json'.

1 call to RestExport::getMimeType()
RestExport::execute in drupal/core/modules/rest/lib/Drupal/rest/Plugin/views/display/RestExport.php
Overrides \Drupal\views\Plugin\views\display\DisplayPluginBase::execute().

File

drupal/core/modules/rest/lib/Drupal/rest/Plugin/views/display/RestExport.php, line 133
Contains \Drupal\rest\Plugin\views\display\RestExport.

Class

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

Namespace

Drupal\rest\Plugin\views\display

Code

public function getMimeType() {
  return $this->mimeType;
}