You are here

public function RestExport::getMimeType in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/rest/src/Plugin/views/display/RestExport.php \Drupal\rest\Plugin\views\display\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::render in core/modules/rest/src/Plugin/views/display/RestExport.php
Renders this display.

File

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

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;
}