ButtonProviderInterface.php 374 B

12345678910111213141516171819
  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. * Interface ButtonProviderInterface
  9. */
  10. interface ButtonProviderInterface
  11. {
  12. /**
  13. * Retrieve button-specified settings
  14. *
  15. * @return array
  16. */
  17. public function getButtonData();
  18. }