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

isSelfClosingTag() 공개 메소드

Whether to force a self closing tag (e.g. '
')
public isSelfClosingTag ( string $tagName ) : boolean
$tagName string
리턴 boolean
    public function isSelfClosingTag($tagName)
    {
        return in_array($tagName, self::$SELF_CLOSING_TAGS, true) || (bool) $this->tsValue('selfClosingTag');
    }