Fieldset.php 547 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Ui\Component\Form;
  7. use Magento\Ui\Component\AbstractComponent;
  8. /**
  9. * Fieldset UI Component.
  10. *
  11. * @api
  12. * @since 100.0.2
  13. */
  14. class Fieldset extends AbstractComponent
  15. {
  16. const NAME = 'fieldset';
  17. /**
  18. * @var bool
  19. */
  20. protected $collapsible = false;
  21. /**
  22. * Get component name
  23. *
  24. * @return string
  25. */
  26. public function getComponentName()
  27. {
  28. return static::NAME;
  29. }
  30. }