dokuwiki\Form\OptGroup::toHTML PHP 메소드

toHTML() 공개 메소드

The HTML representation of this element
public toHTML ( ) : string
리턴 string
    public function toHTML()
    {
        if ($this->attributes['label'] === null) {
            return $this->renderOptions();
        }
        $html = '<optgroup ' . buildAttributes($this->attrs()) . '>';
        $html .= $this->renderOptions();
        $html .= '</optgroup>';
        return $html;
    }