TRAJOIN is an Application to Translate symfony documents Jointly.

home > 1.2/cookbook/en > cross-application-links.txt

[1] Edit ↑TOP

How to create Links between Applications


[2] Edit ↑TOP

A symfony project is made of one or more applications. Applications share nothing, but the model classes. But sometimes, you need the ability to create links to a frontend application from a backend one. Think about a CMS backend where you want the user to edit an article and then link to the corresponding article in the frontend.


[3] Edit ↑TOP

In this tutorial, I will show you a simple solution to this problem.


[4] Edit ↑TOP

Beside parsing the configuration files and converting the resulting array to a PHP cache, some configuration handler classes can also "evaluate" the configuration for direct consumption (the autoload, database, and routing configuration handlers sports this new behavior).


[5] Edit ↑TOP

For example, if you want to convert a file containing route definitions in the YAML format to their corresponding routes objects, you can do something like the following:


[6] Edit ↑TOP

$config = new sfRoutingConfigHandler();
$routes = $config->evaluate(array('/path/to/routing.yml'));

[7] Edit ↑TOP

If you execute the above code snippet, the $routes array will be populated with an array of route objects, equivalent to the route definitions in the YAML file. The generate() method takes an array of YAML filenames as its first argument and merge the content of the files.


[8] Edit ↑TOP
The evaluate() method takes an array of configuration files. If you have some plugins that define routes in a routing.yml file, add its file path in the array and the configuration will be merged with the main configuration.


[9] Edit ↑TOP

Thanks to the framework decoupling and the sfPatternRouting::setRoutes() method, you can easily create a frontend routing object from any PHP script:


[10] Edit ↑TOP

$routing = new sfPatternRouting(new sfEventDispatcher());
$routing->setRoutes($routes);

[11] Edit ↑TOP

Generating URLs is now as simple as calling the routing object generate() method:


[12] Edit ↑TOP

$routing->generate('homepage');
$routing->generate('article', array('id' => $id));

[13] Edit ↑TOP

The generate() method takes a route name as its first argument, and an array of parameters as its second one.


[14] Edit ↑TOP

Let's use this knowledge to simplify the creation of frontend URLs from a backend application.


[15] Edit ↑TOP

In the backendConfiguration class, add the following code:


[16] Edit ↑TOP

// apps/backend/config/backendConfiguration.class.php
class backendConfiguration extends sfApplicationConfiguration
{
  protected $frontendRouting = null;

  public function generateFrontendUrl($name, $parameters = array())
  {
    return 'http://frontend.example.com'.$this->getFrontendRouting()->generate($name, $parameters);
  }

  public function getFrontendRouting()
  {
    if (!$this->frontendRouting)
    {
      $this->frontendRouting = new sfPatternRouting(new sfEventDispatcher());

      $config = new sfRoutingConfigHandler();
      $routes = $config->evaluate(array(sfConfig::get('sf_apps_dir').'/frontend/config/routing.yml'));

      $this->frontendRouting->setRoutes($routes);
    }

    return $this->frontendRouting;
  }

  // ...
}

[17] Edit ↑TOP
Notice that the generateFrontendUrl() method always generates absolute URLs for obvious reasons. This is the only information that still need to be hardcoded, as symfony does not have this knowledge and cannot guess it.


[18] Edit ↑TOP

With this code in place, you can now generate a frontend URL from anywhere in the backend. Here is for instance how to redirect the user to the frontend from a backend action:


[19] Edit ↑TOP

$this->redirect($this->getContext()->getConfiguration()->generateFrontendUrl('hello', array('name' => 'Bar')));

[20] Edit ↑TOP

You can also create a small helper for templates:


[21] Edit ↑TOP

function link_to_frontend($name, $parameters)
{
  return sfProjectConfiguration::getActive()->generateFrontendUrl($name, $parameters);
}

[22] Edit ↑TOP

That's all there is to it!


[23] Edit ↑TOP

If you have many applications, it is pretty easy to refactor the above code to generate URL for and from any other application.


[24] Edit ↑TOP
The technique described in this post is used internally by symfony for the app:routes tasks.