vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/Templating/Helper/RouterHelper.php line 14

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Bundle\FrameworkBundle\Templating\Helper;
  11. @trigger_error('The '.RouterHelper::class.' class is deprecated since version 4.3 and will be removed in 5.0; use Twig instead.'E_USER_DEPRECATED);
  12. use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
  13. use Symfony\Component\Templating\Helper\Helper;
  14. /**
  15.  * RouterHelper manages links between pages in a template context.
  16.  *
  17.  * @author Fabien Potencier <fabien@symfony.com>
  18.  *
  19.  * @deprecated since version 4.3, to be removed in 5.0; use Twig instead.
  20.  */
  21. class RouterHelper extends Helper
  22. {
  23.     protected $generator;
  24.     public function __construct(UrlGeneratorInterface $router)
  25.     {
  26.         $this->generator $router;
  27.     }
  28.     /**
  29.      * Generates a URL reference (as an absolute or relative path) to the route with the given parameters.
  30.      *
  31.      * @param string $name       The name of the route
  32.      * @param mixed  $parameters An array of parameters
  33.      * @param bool   $relative   Whether to generate a relative or absolute path
  34.      *
  35.      * @return string The generated URL reference
  36.      *
  37.      * @see UrlGeneratorInterface
  38.      */
  39.     public function path($name$parameters = [], $relative false)
  40.     {
  41.         return $this->generator->generate($name$parameters$relative UrlGeneratorInterface::RELATIVE_PATH UrlGeneratorInterface::ABSOLUTE_PATH);
  42.     }
  43.     /**
  44.      * Generates a URL reference (as an absolute URL or network path) to the route with the given parameters.
  45.      *
  46.      * @param string $name           The name of the route
  47.      * @param mixed  $parameters     An array of parameters
  48.      * @param bool   $schemeRelative Whether to omit the scheme in the generated URL reference
  49.      *
  50.      * @return string The generated URL reference
  51.      *
  52.      * @see UrlGeneratorInterface
  53.      */
  54.     public function url($name$parameters = [], $schemeRelative false)
  55.     {
  56.         return $this->generator->generate($name$parameters$schemeRelative UrlGeneratorInterface::NETWORK_PATH UrlGeneratorInterface::ABSOLUTE_URL);
  57.     }
  58.     /**
  59.      * {@inheritdoc}
  60.      */
  61.     public function getName()
  62.     {
  63.         return 'router';
  64.     }
  65. }