12345678910111213141516171819 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- // @codingStandardsIgnoreFile
- ?>
- <?php
- /**
- * @var $block \Magento\Backend\Block\Widget\Button
- */
- ?>
- <?= $block->getBeforeHtml() ?>
- <button <?= /* @escapeNotVerified */ $block->getAttributesHtml(), $block->getUiId() ?>>
- <span><?= /* @escapeNotVerified */ $block->getLabel() ?></span>
- </button>
- <?= $block->getAfterHtml() ?>
|