2 namespace TYPO3\CMS\Lang\View
;
5 * This file is part of the TYPO3 CMS project.
7 * It is free software; you can redistribute it and/or modify it under
8 * the terms of the GNU General Public License, either version 2
9 * of the License, or any later version.
11 * For the full copyright and license information, please read the
12 * LICENSE.txt file that was distributed with this source code.
14 * The TYPO3 project - inspiring people to share!
17 use TYPO3\CMS\Extbase\Mvc\View\AbstractView
;
18 use TYPO3\CMS\Extbase\Mvc\Web\Response
;
19 use TYPO3\CMS\Extbase\
Object\ObjectManagerInterface
;
22 * Base class for JSON views
24 abstract class AbstractJsonView
extends AbstractView
27 * @var \TYPO3\CMS\Extbase\Object\ObjectManagerInterface
29 protected $objectManager;
32 * @param \TYPO3\CMS\Extbase\Object\ObjectManagerInterface $objectManager
34 public function injectObjectManager(ObjectManagerInterface
$objectManager)
36 $this->objectManager
= $objectManager;
40 * Render template content
44 public function render()
46 $result = $this->getReponseData();
47 $this->sendResponse($result);
51 * Returns the response data
53 * @return array The response data
55 abstract protected function getReponseData();
58 * Send response to browser
60 * @param array $data The response data
63 protected function sendResponse(array $data)
65 $response = $this->objectManager
->get(Response
::class);
66 $response->setHeader('Content-Type', 'application/json; charset=utf-8');
67 $response->setContent(json_encode($data));
68 $response->sendHeaders();