diff --git a/cookbook/routing/custom_route_loader.rst b/cookbook/routing/custom_route_loader.rst
index a6e682ffe70..046ea128409 100644
--- a/cookbook/routing/custom_route_loader.rst
+++ b/cookbook/routing/custom_route_loader.rst
@@ -4,23 +4,28 @@
How to Create a custom Route Loader
===================================
-A custom route loader allows you to add routes to an application without
-including them, for example, in a YAML file. This comes in handy when
-you have a bundle but don't want to manually add the routes for the bundle
-to ``app/config/routing.yml``. This may be especially important when you want
-to make the bundle reusable, or when you have open-sourced it as this would
-slow down the installation process and make it error-prone.
-
-Alternatively, you could also use a custom route loader when you want your
-routes to be automatically generated or located based on some convention or
-pattern. One example is the `FOSRestBundle`_ where routing is generated based
-off the names of the action methods in a controller.
+What is a Custom Route Loader
+-----------------------------
+
+A custom route loader enables you to generate routes based on some
+conventions or patterns. A great example for this use-case is the
+`FOSRestBundle`_ where routes are generated based on the names of the
+action methods in a controller.
+
+A custom route loader does not enable your bundle to inject routes
+without the need to modify the routing configuration
+(e.g. ``app/config/routing.yml``) manually.
+If your bundle provides routes, whether via a configuration file, like
+the `WebProfilerBundle` does, or via a custom route loader, like the
+`FOSRestBundle`_ does, an entry in the routing configuration is always
+necessary.
.. note::
There are many bundles out there that use their own route loaders to
accomplish cases like those described above, for instance
- `FOSRestBundle`_, `JMSI18nRoutingBundle`_, `KnpRadBundle`_ and `SonataAdminBundle`_.
+ `FOSRestBundle`_, `JMSI18nRoutingBundle`_, `KnpRadBundle`_ and
+ `SonataAdminBundle`_.
Loading Routes
--------------
@@ -35,20 +40,18 @@ and therefore have two important methods:
:method:`Symfony\\Component\\Config\\Loader\\LoaderInterface::supports`
and :method:`Symfony\\Component\\Config\\Loader\\LoaderInterface::load`.
-Take these lines from the ``routing.yml`` in the AcmeDemoBundle of the Standard
-Edition:
+Take these lines from the ``routing.yml`` in the Symfony Standard Edition:
.. code-block:: yaml
- # src/Acme/DemoBundle/Resources/config/routing.yml
- _demo:
- resource: "@AcmeDemoBundle/Controller/DemoController.php"
+ # app/config/routing.yml
+ app:
+ resource: @AppBundle/Controller/
type: annotation
- prefix: /demo
-When the main loader parses this, it tries all the delegate loaders and calls
+When the main loader parses this, it tries all registered delegate loaders and calls
their :method:`Symfony\\Component\\Config\\Loader\\LoaderInterface::supports`
-method with the given resource (``@AcmeDemoBundle/Controller/DemoController.php``)
+method with the given resource (``@AppBundle/Controller/``)
and type (``annotation``) as arguments. When one of the loader returns ``true``,
its :method:`Symfony\\Component\\Config\\Loader\\LoaderInterface::load` method
will be called, which should return a :class:`Symfony\\Component\\Routing\\RouteCollection`
@@ -59,20 +62,24 @@ Creating a custom Loader
To load routes from some custom source (i.e. from something other than annotations,
YAML or XML files), you need to create a custom route loader. This loader
-should implement :class:`Symfony\\Component\\Config\\Loader\\LoaderInterface`.
+has to implement :class:`Symfony\\Component\\Config\\Loader\\LoaderInterface`.
+
+In most cases it's better not to implement
+:class:`Symfony\\Component\\Config\\Loader\\LoaderInterface`
+yourself, but extend from :class:`Symfony\\Component\\Config\\Loader\\Loader`.
The sample loader below supports loading routing resources with a type of
``extra``. The type ``extra`` isn't important - you can just invent any resource
type you want. The resource name itself is not actually used in the example::
- namespace Acme\DemoBundle\Routing;
+ // src/AppBundle/Routing/ExtraLoader.php
+ namespace AppBundle\Routing;
- use Symfony\Component\Config\Loader\LoaderInterface;
- use Symfony\Component\Config\Loader\LoaderResolverInterface;
+ use Symfony\Component\Config\Loader\Loader;
use Symfony\Component\Routing\Route;
use Symfony\Component\Routing\RouteCollection;
- class ExtraLoader implements LoaderInterface
+ class ExtraLoader extends Loader
{
private $loaded = false;
@@ -87,14 +94,14 @@ type you want. The resource name itself is not actually used in the example::
// prepare a new route
$path = '/extra/{parameter}';
$defaults = array(
- '_controller' => 'AcmeDemoBundle:Demo:extra',
+ '_controller' => 'AppBundle:Extra:extra',
);
$requirements = array(
'parameter' => '\d+',
);
$route = new Route($path, $defaults, $requirements);
- // add the new route to the route collection:
+ // add the new route to the route collection
$routeName = 'extraRoute';
$routes->add($routeName, $route);
@@ -107,32 +114,36 @@ type you want. The resource name itself is not actually used in the example::
{
return 'extra' === $type;
}
+ }
- public function getResolver()
- {
- // needed, but can be blank, unless you want to load other resources
- // and if you do, using the Loader base class is easier (see below)
- }
+Make sure the controller you specify really exists. In this case you
+have to create an ``extraAction`` method in the ``ExtraController``
+of the ``AppBundle``::
+
+ // src/AppBundle/Controller/ExtraController.php
+ namespace AppBundle\Controller;
- public function setResolver(LoaderResolverInterface $resolver)
+ use Symfony\Component\HttpFoundation\Response;
+ use Symfony\Bundle\FrameworkBundle\Controller\Controller;
+
+ class ExtraController extends Controller
+ {
+ public function extraAction($parameter)
{
- // same as above
+ return new Response($parameter);
}
}
-.. note::
-
- Make sure the controller you specify really exists.
-
Now define a service for the ``ExtraLoader``:
.. configuration-block::
.. code-block:: yaml
+ # app/config/services.yml
services:
- acme_demo.routing_loader:
- class: Acme\DemoBundle\Routing\ExtraLoader
+ app.routing_loader:
+ class: AppBundle\Routing\ExtraLoader
tags:
- { name: routing.loader }
@@ -144,7 +155,7 @@ Now define a service for the ``ExtraLoader``:
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">
Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.
Alternative Proxies: