public function ViewExecutable::getResponse in Drupal 8
Same name and namespace in other branches
- 9 core/modules/views/src/ViewExecutable.php \Drupal\views\ViewExecutable::getResponse()
Gets the response object used by the view.
Return value
\Symfony\Component\HttpFoundation\Response The response object of the view.
File
- core/
modules/ views/ src/ ViewExecutable.php, line 1791
Class
- ViewExecutable
- Represents a view as a whole.
Namespace
Drupal\viewsCode
public function getResponse() {
if (!isset($this->response)) {
$this->response = new Response();
}
return $this->response;
}