vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/Templating/Helper/SessionHelper.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 '.SessionHelper::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\HttpFoundation\RequestStack;
  13. use Symfony\Component\HttpFoundation\Session\SessionInterface;
  14. use Symfony\Component\Templating\Helper\Helper;
  15. /**
  16.  * SessionHelper provides read-only access to the session attributes.
  17.  *
  18.  * @author Fabien Potencier <fabien@symfony.com>
  19.  *
  20.  * @deprecated since version 4.3, to be removed in 5.0; use Twig instead.
  21.  */
  22. class SessionHelper extends Helper
  23. {
  24.     protected $session;
  25.     protected $requestStack;
  26.     public function __construct(RequestStack $requestStack)
  27.     {
  28.         $this->requestStack $requestStack;
  29.     }
  30.     /**
  31.      * Returns an attribute.
  32.      *
  33.      * @param string $name    The attribute name
  34.      * @param mixed  $default The default value
  35.      *
  36.      * @return mixed
  37.      */
  38.     public function get($name$default null)
  39.     {
  40.         return $this->getSession()->get($name$default);
  41.     }
  42.     public function getFlash($name, array $default = [])
  43.     {
  44.         return $this->getSession()->getFlashBag()->get($name$default);
  45.     }
  46.     public function getFlashes()
  47.     {
  48.         return $this->getSession()->getFlashBag()->all();
  49.     }
  50.     public function hasFlash($name)
  51.     {
  52.         return $this->getSession()->getFlashBag()->has($name);
  53.     }
  54.     private function getSession(): SessionInterface
  55.     {
  56.         if (null === $this->session) {
  57.             if (!$this->requestStack->getMasterRequest()) {
  58.                 throw new \LogicException('A Request must be available.');
  59.             }
  60.             $this->session $this->requestStack->getMasterRequest()->getSession();
  61.         }
  62.         return $this->session;
  63.     }
  64.     /**
  65.      * {@inheritdoc}
  66.      */
  67.     public function getName()
  68.     {
  69.         return 'session';
  70.     }
  71. }