src/Controller/ContentController.php line 32

Open in your IDE?
  1. <?php
  2. /**
  3.  * Pimcore
  4.  *
  5.  * This source file is available under two different licenses:
  6.  * - GNU General Public License version 3 (GPLv3)
  7.  * - Pimcore Enterprise License (PEL)
  8.  * Full copyright and license information is available in
  9.  * LICENSE.md which is distributed with this source code.
  10.  *
  11.  *  @copyright  Copyright (c) Pimcore GmbH (http://www.pimcore.org)
  12.  *  @license    http://www.pimcore.org/license     GPLv3 and PEL
  13.  */
  14. namespace App\Controller;
  15. use App\Form\CarSubmitFormType;
  16. use App\Model\Product\Car;
  17. use App\Website\Tool\Text;
  18. use Pimcore\Bundle\EcommerceFrameworkBundle\Factory;
  19. use Pimcore\Controller\Configuration\ResponseHeader;
  20. use Pimcore\Controller\FrontendController;
  21. use Pimcore\Model\DataObject\BodyStyle;
  22. use Pimcore\Model\DataObject\Manufacturer;
  23. use Pimcore\Model\DataObject\Service;
  24. use Pimcore\Translation\Translator;
  25. use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
  26. use Symfony\Component\HttpFoundation\Request;
  27. use Symfony\Component\HttpFoundation\Response;
  28. class ContentController extends FrontendController
  29. {
  30.     /**
  31.      * @Template
  32.      */
  33.     public function defaultAction()
  34.     {
  35.         return [];
  36.     }
  37.     /**
  38.      * @return Response
  39.      */
  40.     public function homeAction()
  41.     {
  42.         return $this->render('content/home.html.twig');
  43.     }
  44. }