src/JuridicusBundle/Controller/KooperationenController.php line 24

Open in your IDE?
  1. <?php
  2. namespace JF\JuridicusBundle\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  4. use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
  5. use Symfony\Component\Form\Extension\Core\Type\SubmitType;
  6. use Symfony\Component\Form\Extension\Core\Type\TextType;
  7. use Symfony\Component\Form\Extension\Core\Type\EmailType;
  8. use Symfony\Component\Form\Extension\Core\Type\TextareaType;
  9. use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
  10. use Symfony\Component\HttpFoundation\Request;
  11. /**
  12.  * Kooperationen controller.
  13.  *
  14.  */
  15. class KooperationenController extends AbstractController
  16. {
  17.     /**
  18.      * @Route("/kooperationen", name="kooperationen")
  19.      */
  20.     public function indexAction(Request $request)
  21.     {
  22.         
  23.         return $this->render("@JFJuridicusBundle/Kooperationen/index.html.twig", array(
  24.             )
  25.         );
  26.     }
  27. }