Neos\Neos\TypoScript\Helper\CachingHelper::nodeTypeTag PHP Метод

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

Generate an @cache entry tag for a node type A cache entry with this tag will be flushed whenever a node (for any variant) that is of the given node type (including inheritance) is updated.
public nodeTypeTag ( NodeType $nodeType ) : string
$nodeType Neos\ContentRepository\Domain\Model\NodeType
Результат string
    public function nodeTypeTag(NodeType $nodeType)
    {
        return 'NodeType_' . $nodeType->getName();
    }