class AclVoter implements VoterInterface
This voter can be used as a base class for implementing your own permissions.
Methods
__construct(AclProviderInterface $aclProvider, ObjectIdentityRetrievalStrategyInterface $oidRetrievalStrategy, SecurityIdentityRetrievalStrategyInterface $sidRetrievalStrategy, PermissionMapInterface $permissionMap, LoggerInterface $logger = null, $allowIfObjectIdentityUnavailable = true) | ||
bool | supportsAttribute(string $attribute) Checks if the voter supports the given attribute. | |
int | vote(TokenInterface $token, object|null $object, array $attributes) Returns the vote for the given parameters. | |
bool | supportsClass(string $class) You can override this method when writing a voter for a specific domain class. |
Details
__construct(AclProviderInterface $aclProvider, ObjectIdentityRetrievalStrategyInterface $oidRetrievalStrategy, SecurityIdentityRetrievalStrategyInterface $sidRetrievalStrategy, PermissionMapInterface $permissionMap, LoggerInterface $logger = null, $allowIfObjectIdentityUnavailable = true)
bool supportsAttribute(string $attribute)
Checks if the voter supports the given attribute.
int vote(TokenInterface $token, object|null $object, array $attributes)
Returns the vote for the given parameters.
This method must return one of the following constants: ACCESSGRANTED, ACCESSDENIED, or ACCESS_ABSTAIN.
bool supportsClass(string $class)
You can override this method when writing a voter for a specific domain class.
Please login to continue.