Gina Next Generation
 All Classes Namespaces Files Functions Variables
DefaultController.php
Go to the documentation of this file.
00001 <?php
00002 
00003 namespace Etrali\GinangBundle\Controller;
00004 
00005 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
00006 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
00007 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
00008 
00009 class DefaultController extends Controller
00010 {
00011     /**
00012      * @Route("/hello/{name}")
00013      * @Template()
00014      */
00015     public function indexAction()
00016     {
00017          return $this->render('EtraliGinangBundle:Default:index.html.twig');
00018     }
00019 }
 All Classes Namespaces Files Functions Variables