button.phtml 436 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. // @codingStandardsIgnoreFile
  7. ?>
  8. <?php
  9. /**
  10. * @var $block \Magento\Backend\Block\Widget\Button
  11. */
  12. ?>
  13. <?= $block->getBeforeHtml() ?>
  14. <button <?= /* @escapeNotVerified */ $block->getAttributesHtml(), $block->getUiId() ?>>
  15. <span><?= /* @escapeNotVerified */ $block->getLabel() ?></span>
  16. </button>
  17. <?= $block->getAfterHtml() ?>