vendor/contao/core-bundle/src/Security/Voter/BackendAccessVoter.php line 19

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. /*
  4.  * This file is part of Contao.
  5.  *
  6.  * (c) Leo Feyer
  7.  *
  8.  * @license LGPL-3.0-or-later
  9.  */
  10. namespace Contao\CoreBundle\Security\Voter;
  11. use Contao\BackendUser;
  12. use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
  13. use Symfony\Component\Security\Core\Authorization\Voter\Voter;
  14. class BackendAccessVoter extends Voter
  15. {
  16.     protected function supports($attribute$subject): bool
  17.     {
  18.         return \is_string($attribute) && === strncmp($attribute'contao_user.'12);
  19.     }
  20.     protected function voteOnAttribute($attribute$subjectTokenInterface $token): bool
  21.     {
  22.         $user $token->getUser();
  23.         [, $field] = explode('.'$attribute2);
  24.         if (!$user instanceof BackendUser || (!\is_scalar($subject) && !\is_array($subject))) {
  25.             return false;
  26.         }
  27.         return $user->hasAccess($subject$field);
  28.     }
  29. }