Neos\Neos\Domain\Service\ContentContext::hasAccessToBackend PHP 메소드

hasAccessToBackend() 보호된 메소드

Is access to the neos backend granted by current authentications.
protected hasAccessToBackend ( ) : boolean
리턴 boolean
    protected function hasAccessToBackend()
    {
        try {
            return $this->privilegeManager->isPrivilegeTargetGranted('Neos.Neos:Backend.GeneralAccess');
        } catch (Exception $exception) {
            return false;
        }
    }