Neos\Fusion\TypoScriptObjects\TagImplementation::getTagName PHP 메소드

getTagName() 공개 메소드

..)
public getTagName ( ) : string
리턴 string
    public function getTagName()
    {
        $tagName = $this->tsValue('tagName');
        if ($tagName === null) {
            $tagName = 'div';
        }
        return $tagName;
    }