* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Silex\Application; use Symfony\Component\Routing\Generator\UrlGeneratorInterface; /** * UrlGenerator trait. * * @author Fabien Potencier */ trait UrlGeneratorTrait { /** * Generates a path from the given parameters. * * @param string $route The name of the route * @param mixed $parameters An array of parameters * * @return string The generated path */ public function path($route, $parameters = []) { return $this['url_generator']->generate($route, $parameters, UrlGeneratorInterface::ABSOLUTE_PATH); } /** * Generates an absolute URL from the given parameters. * * @param string $route The name of the route * @param mixed $parameters An array of parameters * * @return string The generated URL */ public function url($route, $parameters = []) { return $this['url_generator']->generate($route, $parameters, UrlGeneratorInterface::ABSOLUTE_URL); } }