PHP Класс eZ\Publish\Core\MVC\Symfony\Security\Authorization\Voter\CoreVoter

Наследование: implements Symfony\Component\Security\Core\Authorization\Voter\VoterInterface
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
__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.

Описание методов

__construct() публичный Метод

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

supportsAttribute() публичный Метод

Checks if the voter supports the given attribute.
public supportsAttribute ( string $attribute ) : boolean
$attribute string An attribute
Результат boolean true if this Voter supports the attribute, false otherwise

supportsClass() публичный Метод

Checks if the voter supports the given class.
public supportsClass ( string $class ) : true
$class string A class name
Результат true if this Voter can process the class

vote() публичный Метод

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
Результат integer either ACCESS_GRANTED, ACCESS_ABSTAIN, or ACCESS_DENIED