ResetButton.php 582 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Customer\Block\Adminhtml\Edit;
  7. use Magento\Framework\View\Element\UiComponent\Control\ButtonProviderInterface;
  8. /**
  9. * Class ResetButton
  10. */
  11. class ResetButton implements ButtonProviderInterface
  12. {
  13. /**
  14. * @return array
  15. */
  16. public function getButtonData()
  17. {
  18. return [
  19. 'label' => __('Reset'),
  20. 'class' => 'reset',
  21. 'on_click' => 'location.reload();',
  22. 'sort_order' => 30
  23. ];
  24. }
  25. }