You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

34 lines
545 B

  1. <?php
  2. namespace dokuwiki\Form;
  3. /**
  4. * Class FieldsetCloseElement
  5. *
  6. * Closes an open Fieldset
  7. *
  8. * @package dokuwiki\Form
  9. */
  10. class FieldsetCloseElement extends TagCloseElement
  11. {
  12. /**
  13. * @param array $attributes
  14. */
  15. public function __construct($attributes = [])
  16. {
  17. parent::__construct('', $attributes);
  18. $this->type = 'fieldsetclose';
  19. }
  20. /**
  21. * The HTML representation of this element
  22. *
  23. * @return string
  24. */
  25. public function toHTML()
  26. {
  27. return '</fieldset>';
  28. }
  29. }