Neos\Fusion\TypoScriptObjects\AttributesImplementation::getAllowEmpty PHP 메소드

getAllowEmpty() 보호된 메소드

Whether empty attributes (HTML5 syntax) should be allowed
protected getAllowEmpty ( ) : boolean
리턴 boolean
    protected function getAllowEmpty()
    {
        $allowEmpty = $this->tsValue('__meta/allowEmpty');
        if ($allowEmpty === null) {
            return true;
        } else {
            return (bool) $allowEmpty;
        }
    }
AttributesImplementation