vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/Templating/GlobalVariables.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;
  11. @trigger_error('The '.GlobalVariables::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\DependencyInjection\ContainerInterface;
  13. use Symfony\Component\HttpFoundation\Request;
  14. use Symfony\Component\HttpFoundation\Session\Session;
  15. use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
  16. /**
  17.  * GlobalVariables is the entry point for Symfony global variables in PHP templates.
  18.  *
  19.  * @author Fabien Potencier <fabien@symfony.com>
  20.  *
  21.  * @deprecated since version 4.3, to be removed in 5.0; use Twig instead.
  22.  */
  23. class GlobalVariables
  24. {
  25.     protected $container;
  26.     public function __construct(ContainerInterface $container)
  27.     {
  28.         $this->container $container;
  29.     }
  30.     /**
  31.      * @return TokenInterface|null
  32.      */
  33.     public function getToken()
  34.     {
  35.         if (!$this->container->has('security.token_storage')) {
  36.             return null;
  37.         }
  38.         return $this->container->get('security.token_storage')->getToken();
  39.     }
  40.     public function getUser()
  41.     {
  42.         if (!$token $this->getToken()) {
  43.             return null;
  44.         }
  45.         $user $token->getUser();
  46.         return \is_object($user) ? $user null;
  47.     }
  48.     /**
  49.      * @return Request|null The HTTP request object
  50.      */
  51.     public function getRequest()
  52.     {
  53.         return $this->container->has('request_stack') ? $this->container->get('request_stack')->getCurrentRequest() : null;
  54.     }
  55.     /**
  56.      * @return Session|null The session
  57.      */
  58.     public function getSession()
  59.     {
  60.         $request $this->getRequest();
  61.         return $request && $request->hasSession() ? $request->getSession() : null;
  62.     }
  63.     /**
  64.      * @return string The current environment string (e.g 'dev')
  65.      */
  66.     public function getEnvironment()
  67.     {
  68.         return $this->container->getParameter('kernel.environment');
  69.     }
  70.     /**
  71.      * @return bool The current debug mode
  72.      */
  73.     public function getDebug()
  74.     {
  75.         return (bool) $this->container->getParameter('kernel.debug');
  76.     }
  77. }