Neos\ContentRepository\Security\Authorization\Privilege\Node\CreateNodePrivilegeSubject::__construct PHP Метод

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

public __construct ( Neos\ContentRepository\Domain\Model\NodeInterface $node, NodeType $creationNodeType = null, Neos\Flow\Aop\JoinPointInterface $joinPoint = null )
$node Neos\ContentRepository\Domain\Model\NodeInterface The parent node under which a new child shall be created
$creationNodeType Neos\ContentRepository\Domain\Model\NodeType The node type of the new child node, to check if this is type is allowed as new child node under the given parent node
$joinPoint Neos\Flow\Aop\JoinPointInterface Set, if created by a method interception. Usually the interception of the createNode() method, where the creation of new child nodes takes place
    public function __construct(NodeInterface $node, NodeType $creationNodeType = null, JoinPointInterface $joinPoint = null)
    {
        $this->creationNodeType = $creationNodeType;
        parent::__construct($node, $joinPoint);
    }