DummyButton.php 392 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\View\Element\UiComponent\Control;
  7. /**
  8. * Class DummyButton
  9. * NullObject for disable buttons
  10. */
  11. class DummyButton implements ButtonProviderInterface
  12. {
  13. /**
  14. * {@inheritdoc}
  15. */
  16. public function getButtonData()
  17. {
  18. return [];
  19. }
  20. }