12345678910111213141516171819202122232425262728293031323334 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Ui\Component\Form;
- use Magento\Ui\Component\AbstractComponent;
- /**
- * Fieldset UI Component.
- *
- * @api
- * @since 100.0.2
- */
- class Fieldset extends AbstractComponent
- {
- const NAME = 'fieldset';
- /**
- * @var bool
- */
- protected $collapsible = false;
- /**
- * Get component name
- *
- * @return string
- */
- public function getComponentName()
- {
- return static::NAME;
- }
- }
|