vendor/symfony/security-bundle/Templating/Helper/SecurityHelper.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 '.SecurityHelper::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\Acl\Voter\FieldVote;
  13. use Symfony\Component\Security\Core\Authorization\AuthorizationCheckerInterface;
  14. use Symfony\Component\Templating\Helper\Helper;
  15. /**
  16.  * SecurityHelper provides read-only access to the security checker.
  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 SecurityHelper extends Helper
  23. {
  24.     private $securityChecker;
  25.     public function __construct(AuthorizationCheckerInterface $securityChecker null)
  26.     {
  27.         $this->securityChecker $securityChecker;
  28.     }
  29.     public function isGranted($role$object null$field null)
  30.     {
  31.         if (null === $this->securityChecker) {
  32.             return false;
  33.         }
  34.         if (null !== $field) {
  35.             $object = new FieldVote($object$field);
  36.         }
  37.         return $this->securityChecker->isGranted($role$object);
  38.     }
  39.     /**
  40.      * {@inheritdoc}
  41.      */
  42.     public function getName()
  43.     {
  44.         return 'security';
  45.     }
  46. }