mirror of
				https://gitlab.com/Chill-Projet/chill-bundles.git
				synced 2025-10-31 09:18:24 +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'
 | |
|                     )
 | |
|                 );
 | |
|     }
 | |
|     
 | |
| }
 |