src/Company/BaseBundle/Controller/DefaultController.php
author cavaliet
Wed, 07 Dec 2011 17:19:10 +0100
changeset 49 3752ef2d39d4
parent 4 02eab39cf8c6
permissions -rwxr-xr-x
Upgrade column management with possibility to return to the initial columns. Little debug in all tag list.

<?php

namespace Company\BaseBundle\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\Controller;


class DefaultController extends Controller
{
    
    public function indexAction()
    {
    	$user = $this->get('security.context')->getToken()->getUser();
        return $this->render('CompanyBaseBundle:Default:index.html.twig', array('user'=>$user));
    }
}