Création d'un module à part pour gérer les applications - Ajout de VautMeUp - Préparation de l'appli karting Ajout d'un bloc "Projets personnels"
		
			
				
	
	
		
			65 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * @link      http://github.com/zendframework/ZendSkeletonApplication for the canonical source repository
 | 
						|
 * @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
 | 
						|
 * @license   http://framework.zend.com/license/new-bsd New BSD License
 | 
						|
 */
 | 
						|
 | 
						|
namespace Application;
 | 
						|
 | 
						|
use Zend\Router\Http\Literal;
 | 
						|
use Zend\Router\Http\Segment;
 | 
						|
use Zend\ServiceManager\Factory\InvokableFactory;
 | 
						|
 | 
						|
return [
 | 
						|
    'router' => [
 | 
						|
        'routes' => [
 | 
						|
            'home' => [
 | 
						|
                'type' => Literal::class,
 | 
						|
                'options' => [
 | 
						|
                    'route'    => '/',
 | 
						|
                    'defaults' => [
 | 
						|
                        'controller' => Controller\IndexController::class,
 | 
						|
                        'action'     => 'index',
 | 
						|
                    ],
 | 
						|
                ],
 | 
						|
            ],
 | 
						|
            'contact' => [
 | 
						|
                'type' => Literal::class,
 | 
						|
                'options' => [
 | 
						|
                    'route'    => '/contact',
 | 
						|
                    'defaults' => [
 | 
						|
                        'controller' => Controller\IndexController::class,
 | 
						|
                        'action'     => 'contact',
 | 
						|
                    ],
 | 
						|
                ],
 | 
						|
            ],
 | 
						|
        ],
 | 
						|
    ],
 | 
						|
    'controllers' => [
 | 
						|
        'factories' => [
 | 
						|
            Controller\IndexController::class => InvokableFactory::class,
 | 
						|
            Controller\VaultController::class => InvokableFactory::class,
 | 
						|
        ],
 | 
						|
    ],
 | 
						|
    'view_manager' => [
 | 
						|
        'display_not_found_reason' => true,
 | 
						|
        'display_exceptions'       => true,
 | 
						|
        'doctype'                  => 'HTML5',
 | 
						|
        'not_found_template'       => 'error/404',
 | 
						|
        'exception_template'       => 'error/index',
 | 
						|
        'strategies' => [
 | 
						|
            'Smarty\View\Strategy'
 | 
						|
        ],
 | 
						|
        'template_map' => [
 | 
						|
            'layout/layout'           => __DIR__ . '/../view/layout/layout.tpl',
 | 
						|
            'application/index/index' => __DIR__ . '/../view/application/index/index.tpl',
 | 
						|
            'error/404'               => __DIR__ . '/../view/error/404.tpl',
 | 
						|
            'error/index'             => __DIR__ . '/../view/error/index.tpl',
 | 
						|
        ],
 | 
						|
        'template_path_stack' => [
 | 
						|
            __DIR__ . '/../view',
 | 
						|
        ],
 | 
						|
    ],
 | 
						|
];
 |