Unfortunately we decided to not maintain this project anymore (see why). If you want to mark another package as a replacement for this one please send an email to hello@knplabs.com.
Simply auto-complete needed route parameters with existing ones.
composer require knplabs/rad-url-generation ~2.0
class AppKernel
{
function registerBundles()
{
$bundles = array(
//...
new Knp\Rad\UrlGeneration\Bundle\UrlGenerationBundle(),
//...
);
//...
return $bundles;
}
}
Just continue to use former url generation, nothing changes concerning the implementation. The only change is you don't repeat current route parameters anymore.
Current route:
app_products_show:
path: /shops/{shop}/products/{products}/
My current url is /shops/12/products/345/
. I want to build again the same url. Should I repeat route parameters if it already is my current route?
Nope.
$router->generate('app_products_show'); // Returns /shops/12/products/345/
$router->generate('app_products_show', ['product' => 122]); // Returns /shops/12/products/122/
$router->generate('app_products_show', ['shop' => 1]); // Returns /shops/1/products/345/
$router->generate('app_products_show', ['shop' => 1, 'product' => 122]); // Returns /shops/1/products/122/
Current route:
app_products_show:
path: /shops/{shop}/products/{products}/
Current URL: /shops/1/products/122/
I want to build this URL
app_variant_show:
path: /shops/{shop}/products/{products}/variants/{variant}/
I could execute:
$router->generate('app_variant_show', ['shop' => 1, 'product' => 122, 'variant' => 23]); // Returns /shops/1/products/122/variants/23/
But why should I repeat already existing parameters ?
$router->generate('app_variant_show', ['variant' => 23]); // Returns /shops/1/products/122/variants/23/
- Router service :
$container->get('router')->generate('app_products_show')
. - Controller shortcuts:
$this->generateUrl('app_products_show')
and$this->redirectToRoute('app_products_show')
. - Twig functions:
path('app_products_show')
orurl('app_products_show')
. - Everything else using the Symfony router.