src/Controller/Module/VideoController.php line 16

Open in your IDE?
  1. <?php
  2. namespace App\Controller\Module;
  3. use App\AppBundle;
  4. use SaintElmos\BaseBundle\Templating\Helper\FrontendHelper;
  5. use SaintElmos\BaseBundle\Utils\SETConf;
  6. use SaintElmos\BaseBundle\Controller\BaseController;
  7. use Symfony\Component\HttpFoundation\Request;
  8. use Pimcore\Controller\FrontendController;
  9. class VideoController extends FrontendController
  10. {
  11.     public function videoAction(Request $request,\Pimcore\Config\Config $websiteConfig)
  12.     {
  13.         $bugfiximageurl AppBundle::getBugfiximageurl();
  14.         return $this->render('module/Video/__video.html.twig', ["bugfiximageurl" => $bugfiximageurl]);
  15.     }
  16. }