chill-bundles/Controller/AdminController.php

21 lines
390 B
PHP

<?php
namespace Chill\PersonBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\Routing\Annotation\Route;
class AdminController extends Controller
{
/**
*
*/
public function indexAction($_locale)
{
return $this->render('ChillPersonBundle:Admin:index.html.twig', array(
// ...
));
}
}