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']) : '';
    }