vendor/symfony/security-bundle/Templating/Helper/LogoutUrlHelper.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\SecurityBundle\Templating\Helper;
  11. @trigger_error('The '.LogoutUrlHelper::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\Security\Http\Logout\LogoutUrlGenerator;
  13. use Symfony\Component\Templating\Helper\Helper;
  14. /**
  15.  * LogoutUrlHelper provides generator functions for the logout URL.
  16.  *
  17.  * @author Jeremy Mikola <jmikola@gmail.com>
  18.  *
  19.  * @deprecated since version 4.3, to be removed in 5.0; use Twig instead.
  20.  */
  21. class LogoutUrlHelper extends Helper
  22. {
  23.     private $generator;
  24.     public function __construct(LogoutUrlGenerator $generator)
  25.     {
  26.         $this->generator $generator;
  27.     }
  28.     /**
  29.      * Generates the absolute logout path for the firewall.
  30.      *
  31.      * @param string|null $key The firewall key or null to use the current firewall key
  32.      *
  33.      * @return string The logout path
  34.      */
  35.     public function getLogoutPath($key)
  36.     {
  37.         return $this->generator->getLogoutPath($key);
  38.     }
  39.     /**
  40.      * Generates the absolute logout URL for the firewall.
  41.      *
  42.      * @param string|null $key The firewall key or null to use the current firewall key
  43.      *
  44.      * @return string The logout URL
  45.      */
  46.     public function getLogoutUrl($key)
  47.     {
  48.         return $this->generator->getLogoutUrl($key);
  49.     }
  50.     /**
  51.      * {@inheritdoc}
  52.      */
  53.     public function getName()
  54.     {
  55.         return 'logout_url';
  56.     }
  57. }