src/Security/Voter/MasterFormVoter.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Security\Voter;
  3. use App\Entity\MasterForm;
  4. use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
  5. use Symfony\Component\Security\Core\Authorization\Voter\Voter;
  6. class MasterFormVoter extends Voter
  7. {
  8.     public const PREVIEW 'MASTER_FORM_PREVIEW';
  9.     /**
  10.      * @param string $attribute
  11.      * @param $subject
  12.      * @return bool
  13.      */
  14.     protected function supports(string $attribute$subject): bool
  15.     {
  16.         return $attribute == self::PREVIEW && $subject instanceof MasterForm;
  17.     }
  18.     /**
  19.      * @param string $attribute
  20.      * @param $subject
  21.      * @param TokenInterface $token
  22.      * @return bool
  23.      */
  24.     protected function voteOnAttribute(string $attribute$subjectTokenInterface $token): bool
  25.     {
  26.         if ($attribute == self::PREVIEW) {
  27.             return $this->canPreview($subject);
  28.         }
  29.         return false;
  30.     }
  31.     /**
  32.      * @param MasterForm $form
  33.      * @return bool
  34.      */
  35.     private function canPreview(MasterForm $form): bool
  36.     {
  37.         return $form->isActive();
  38.     }
  39. }