add (empty) admin section

This commit is contained in:
2013-12-07 13:29:37 +01:00
parent fcbe220c6c
commit 0d4c87eb22
3 changed files with 46 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<?php
namespace CL\Chill\PersonBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
/**
*
*
* @author julien.fastre@champs-libres.coop
*/
class AdminController extends Controller {
public function indexAction() {
return $this->forward('CLChillMainBundle:Admin:index',
array(
'menu' => 'admin_person',
'page_title' => 'menu.person.admin.index',
'header_title' => 'menu.person.header_index'
)
);
}
}