Neos\Neos\Service\ContentElementWrappingService::isInlineEditable PHP Метод

isInlineEditable() защищенный Метод

$parsedType = TypeHandling::parseType($dataType);
protected isInlineEditable ( Neos\ContentRepository\Domain\Model\NodeInterface $node ) : boolean
$node Neos\ContentRepository\Domain\Model\NodeInterface
Результат boolean
    protected function isInlineEditable(NodeInterface $node)
    {
        $uiConfiguration = $node->getNodeType()->hasConfiguration('ui') ? $node->getNodeType()->getConfiguration('ui') : [];
        return isset($uiConfiguration['inlineEditable']) && $uiConfiguration['inlineEditable'] === true || $this->hasInlineEditableProperties($node);
    }