vendor/symfony/framework-bundle/Controller/TemplateController.php line 43

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Bundle\FrameworkBundle\Controller;
  11. use Symfony\Component\HttpFoundation\Response;
  12. use Twig\Environment;
  13. /**
  14.  * TemplateController.
  15.  *
  16.  * @author Fabien Potencier <fabien@symfony.com>
  17.  *
  18.  * @final
  19.  */
  20. class TemplateController
  21. {
  22.     private $twig;
  23.     public function __construct(Environment $twig null)
  24.     {
  25.         $this->twig $twig;
  26.     }
  27.     /**
  28.      * Renders a template.
  29.      *
  30.      * @param string    $template   The template name
  31.      * @param int|null  $maxAge     Max age for client caching
  32.      * @param int|null  $sharedAge  Max age for shared (proxy) caching
  33.      * @param bool|null $private    Whether or not caching should apply for client caches only
  34.      * @param array     $context    The context (arguments) of the template
  35.      * @param int       $statusCode The HTTP status code to return with the response. Defaults to 200
  36.      */
  37.     public function templateAction(string $templateint $maxAge nullint $sharedAge nullbool $private null, array $context = [], int $statusCode 200): Response
  38.     {
  39.         if (null === $this->twig) {
  40.             throw new \LogicException('You cannot use the TemplateController if the Twig Bundle is not available.');
  41.         }
  42.         $response = new Response($this->twig->render($template$context), $statusCode);
  43.         if ($maxAge) {
  44.             $response->setMaxAge($maxAge);
  45.         }
  46.         if (null !== $sharedAge) {
  47.             $response->setSharedMaxAge($sharedAge);
  48.         }
  49.         if ($private) {
  50.             $response->setPrivate();
  51.         } elseif (false === $private || (null === $private && (null !== $maxAge || null !== $sharedAge))) {
  52.             $response->setPublic();
  53.         }
  54.         return $response;
  55.     }
  56.     public function __invoke(string $templateint $maxAge nullint $sharedAge nullbool $private null, array $context = [], int $statusCode 200): Response
  57.     {
  58.         return $this->templateAction($template$maxAge$sharedAge$private$context$statusCode);
  59.     }
  60. }