mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
25 lines
567 B
PHP
25 lines
567 B
PHP
<?php
|
|
|
|
namespace 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'
|
|
)
|
|
);
|
|
}
|
|
|
|
}
|