src/Globals/ClaimManagementBundle/Controller/ClaimIntakeContainerController.php line 20

Open in your IDE?
  1. <?php
  2. namespace Globals\ClaimManagementBundle\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Console\Application;
  4. use Symfony\Bundle\FrameworkBundle\Controller\Controller;
  5. use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
  6. use Symfony\Component\Console\Input\ArrayInput;
  7. use Symfony\Component\Console\Output\BufferedOutput;
  8. use Symfony\Component\HttpFoundation\Response;
  9. /**
  10.  * @Route("/administration")
  11.  */
  12. class ClaimIntakeContainerController extends Controller
  13. {
  14.     /**
  15.      * @Route("/manage")
  16.      */
  17.     public function mainActivity()
  18.     {
  19.         # Will render the container index, from there, we need to load our own damn fragments
  20.         return $this->render('ClaimManagementBundle:ClaimIntakeManagement/Container:index.html.twig');
  21.     }
  22.     /**
  23.      * @Route("/manage_map")
  24.      */
  25.     public function mainMapActivity()
  26.     {
  27.         # Will render the container index, from there, we need to load our own damn fragments
  28.         return $this->render('ClaimManagementBundle:ClaimTeamScreen/Map:index.html.twig');
  29.     }
  30.     
  31. }