src/Controller/Module/AnchorController.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Controller\Module;
  3. use SaintElmos\BaseBundle\Utils\SETConf;
  4. use Symfony\Component\HttpFoundation\Request;
  5. use Pimcore\Controller\FrontendController;
  6. class AnchorController extends FrontendController
  7. {
  8.     public function anchorAction(Request $request,\Pimcore\Config\Config $websiteConfig)
  9.     {
  10.         return $this->render('module/Anchor/__set-anchor.html.twig');
  11.     }
  12. }