src/Controller/Website/LoggerController.php line 49

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of Sulu.
  4.  *
  5.  * (c) Sulu GmbH
  6.  *
  7.  * This source file is subject to the MIT license that is bundled
  8.  * with this source code in the file LICENSE.
  9.  * App\Controller\Website\LoggerController
  10.  */
  11. namespace App\Controller\Website;
  12. use Sulu\Bundle\WebsiteBundle\Controller\WebsiteController;
  13. use Sulu\Component\Content\Compat\StructureInterface;
  14. use Symfony\Component\HttpFoundation\Response;
  15. use Symfony\Component\HttpKernel\EventListener\AbstractSessionListener;
  16. use Symfony\Component\DependencyInjection\ParameterBag\ParameterBagInterface;
  17. /**
  18.  * Default Controller for rendering templates, uses the themes from the ClientWebsiteBundle.
  19.  */
  20. class LoggerController extends WebsiteController
  21. {
  22.     private $params;
  23.     public function __construct(ParameterBagInterface $params)
  24.     {
  25.         $this->params $params;
  26.     }
  27.     /**
  28.      * Loads the content from the request (filled by the route provider) and creates a response with this content and
  29.      * the appropriate cache headers.
  30.      *
  31.      * @param bool $preview
  32.      * @param bool $partial
  33.      *
  34.      * @return Response
  35.      */
  36.     public function indexAction(StructureInterface $structure$preview false$partial false)
  37.     {
  38.         $appBaseUrl $_ENV['APP_BASE_URL'] ?? '/';
  39.         $appMediabankUrl $_ENV['APP_MEDIABANK_URL'] ?? '/';
  40.         $response $this->renderStructure(
  41.             $structure,
  42.             [
  43.                 'appBaseUrl' => $appBaseUrl,
  44.                 'appMediabankUrl' => $appMediabankUrl,
  45.             ],
  46.             $preview,
  47.             $partial
  48.         );
  49.         $response->headers->set(AbstractSessionListener::NO_AUTO_CACHE_CONTROL_HEADER'true');
  50.         return $response;
  51.     }
  52. }