dokuwiki\Form\OptGroup::toHTML PHP Méthode

toHTML() public méthode

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