locale example


namespace Symfony\Component\Routing\Loader\Configurator;

return function DRoutingConfigurator $routes) {
    $collection = $routes->collection();
    $collection
        ->methods(['GET'])
        ->defaults(['attribute' => true])
        ->stateless();

    $collection->add('defaultsA', '/defaultsA')
        ->locale('en')
        ->format('html');

    $collection->add('defaultsB', '/defaultsB')
        ->methods(['POST'])
        ->stateless(false)
        ->locale('en')
        ->format('html');
};
<?php
namespace Symfony\Component\Routing\Loader\Configurator;

return function DRoutingConfigurator $routes) {
    $routes->import('imported-with-defaults.php')
        ->prefix('/defaults')
        ->locale('g_locale')
        ->format('g_format')
        ->stateless(true)
    ;
};
<?php
namespace Symfony\Component\Routing\Loader\Configurator;

return function DRoutingConfigurator $routes) {
    $routes->add('defaults', '/defaults')
        ->locale('en')
        ->format('html')
        ->stateless(true)
    ;
};
Home | Imprint | This part of the site doesn't use cookies.