PHP Class eZ\Publish\Core\MVC\Symfony\Security\Authorization\Voter\CoreVoter

Inheritance: implements Symfony\Component\Security\Core\Authorization\Voter\VoterInterface
Show file Open project: ezsystems/ezpublish-kernel Class Usage Examples

Public Methods

Method Description
__construct ( eZ\Publish\API\Repository\Repository $repository )
supportsAttribute ( string $attribute ) : boolean Checks if the voter supports the given attribute.
supportsClass ( string $class ) : true Checks if the voter supports the given class.
vote ( Symfony\Component\Security\Core\Authentication\Token\TokenInterface $token, object $object, array $attributes ) : integer Returns the vote for the given parameters.

Method Details

__construct() public method

public __construct ( eZ\Publish\API\Repository\Repository $repository )
$repository eZ\Publish\API\Repository\Repository

supportsAttribute() public method

Checks if the voter supports the given attribute.
public supportsAttribute ( string $attribute ) : boolean
$attribute string An attribute
return boolean true if this Voter supports the attribute, false otherwise

supportsClass() public method

Checks if the voter supports the given class.
public supportsClass ( string $class ) : true
$class string A class name
return true if this Voter can process the class

vote() public method

This method must return one of the following constants: ACCESS_GRANTED, ACCESS_DENIED, or ACCESS_ABSTAIN.
public vote ( Symfony\Component\Security\Core\Authentication\Token\TokenInterface $token, object $object, array $attributes ) : integer
$token Symfony\Component\Security\Core\Authentication\Token\TokenInterface A TokenInterface instance
$object object The object to secure
$attributes array An array of attributes associated with the method being invoked
return integer either ACCESS_GRANTED, ACCESS_ABSTAIN, or ACCESS_DENIED