Checkbox.php 427 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Ui\Component\Form\Element;
  7. /**
  8. * Class Checkbox
  9. * @api
  10. * @since 100.0.2
  11. */
  12. class Checkbox extends AbstractElement
  13. {
  14. const NAME = 'checkbox';
  15. /**
  16. * Get component name
  17. *
  18. * @return string
  19. */
  20. public function getComponentName()
  21. {
  22. return static::NAME;
  23. }
  24. }