FieldsetCloseElement.php 550 B

123456789101112131415161718192021222324252627282930313233
  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 = array())
  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. }