164744a10SAndreas Gohr<?php 29d01c1d9SSatoshi Sahara 364744a10SAndreas Gohrnamespace dokuwiki\Form; 464744a10SAndreas Gohr 564744a10SAndreas Gohr/** 664744a10SAndreas Gohr * Class FieldsetCloseElement 764744a10SAndreas Gohr * 864744a10SAndreas Gohr * Closes an open Fieldset 964744a10SAndreas Gohr * 1064744a10SAndreas Gohr * @package dokuwiki\Form 1164744a10SAndreas Gohr */ 129d01c1d9SSatoshi Saharaclass FieldsetCloseElement extends TagCloseElement 139d01c1d9SSatoshi Sahara{ 1464744a10SAndreas Gohr /** 1564744a10SAndreas Gohr * @param array $attributes 1664744a10SAndreas Gohr */ 17*6fd0861fSAndreas Gohr public function __construct($attributes = []) 189d01c1d9SSatoshi Sahara { 191f5d8b65SAndreas Gohr parent::__construct('', $attributes); 201f5d8b65SAndreas Gohr $this->type = 'fieldsetclose'; 2164744a10SAndreas Gohr } 2264744a10SAndreas Gohr 2364744a10SAndreas Gohr 2464744a10SAndreas Gohr /** 251f5d8b65SAndreas Gohr * The HTML representation of this element 2664744a10SAndreas Gohr * 271f5d8b65SAndreas Gohr * @return string 2864744a10SAndreas Gohr */ 299d01c1d9SSatoshi Sahara public function toHTML() 309d01c1d9SSatoshi Sahara { 311f5d8b65SAndreas Gohr return '</fieldset>'; 3264744a10SAndreas Gohr } 3364744a10SAndreas Gohr} 34