Neos\ContentRepository\Domain\Model\Node::willChildNodeBeAutoCreated PHP 메소드

willChildNodeBeAutoCreated() 보호된 메소드

Checks if the given Node $name is configured as auto-created childNode in the NodeType configuration.
protected willChildNodeBeAutoCreated ( string $name ) : boolean
$name string The node name to check.
리턴 boolean TRUE if the given nodeName is configured as auto-created child node.
    protected function willChildNodeBeAutoCreated($name)
    {
        $autoCreatedChildNodes = $this->getNodeType()->getAutoCreatedChildNodes();
        return isset($autoCreatedChildNodes[$name]);
    }
Node