You are here

public function RestExport::setContentType 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::setContentType()
  2. 10 core/modules/rest/src/Plugin/views/display/RestExport.php \Drupal\rest\Plugin\views\display\RestExport::setContentType()

Sets the content type.

Parameters

string $content_type: The content type machine name. E.g. 'json'.

1 call to RestExport::setContentType()
RestExport::initDisplay in core/modules/rest/src/Plugin/views/display/RestExport.php
Initializes the display plugin.

File

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

Class

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

Namespace

Drupal\rest\Plugin\views\display

Code

public function setContentType($content_type) {
  $this->contentType = $content_type;
}