Neos\ContentRepository\Domain\Model\NodeType::isAggregate PHP Метод

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

The most prominent *aggregate* is a Document and everything which inherits from it, like a Page. If a node type is marked as aggregate, it means that: - the node type can "live on its own", i.e. can be part of an external URL - when moving this node, all node variants are also moved (across all dimensions) - Recursive copying only happens *inside* this aggregate, and stops at nested aggregates.
public isAggregate ( ) : boolean
Результат boolean TRUE if the node type is an aggregate
    public function isAggregate()
    {
        return $this->getConfiguration('aggregate') === true;
    }