Neos\Neos\Domain\Model\PluginViewDefinition::getLabel PHP Метод

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

Get the human-readable label of this node type
public getLabel ( ) : string
Результат string
    public function getLabel()
    {
        $translationHelper = new TranslationHelper();
        return isset($this->configuration['label']) ? $translationHelper->translate($this->configuration['label']) : '';
    }