SimplePresenter.php 425 B

1234567891011121314151617181920
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Presenters;
  4. use Nette;
  5. final class SimplePresenter extends Nette\Application\UI\Presenter
  6. {
  7. public function renderPlainText() {
  8. $this->getHttpResponse()->setContentType('text/plain', 'UTF-8');
  9. $this->sendResponse(new \Nette\Application\Responses\TextResponse('Hello, World!'));
  10. }
  11. public function renderJson() {
  12. $this->sendJson(['message' => 'Hello, World!']);
  13. }
  14. }