Action.php 538 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Ui\Component\Control;
  7. use Magento\Ui\Component\AbstractComponent;
  8. use Magento\Framework\View\Element\UiComponent\Control\ControlInterface;
  9. /**
  10. * Class Action
  11. */
  12. class Action extends AbstractComponent implements ControlInterface
  13. {
  14. const NAME = 'action';
  15. /**
  16. * Get component name
  17. *
  18. * @return string
  19. */
  20. public function getComponentName()
  21. {
  22. return static::NAME;
  23. }
  24. }