Neos\ContentRepository\Domain\Model\Node::isAutoCreated PHP Метод

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

Determine if this node is configured as auto-created childNode of the parent node. If that is the case, it should not be deleted.
public isAutoCreated ( ) : boolean
Результат boolean TRUE if this node is auto-created by the parent.
    public function isAutoCreated()
    {
        $parent = $this->getParent();
        if ($parent === null) {
            return false;
        }
        if (array_key_exists($this->getName(), $parent->getNodeType()->getAutoCreatedChildNodes())) {
            return true;
        }
        return false;
    }
Node