123456789101112131415 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- // @codingStandardsIgnoreFile
- ?>
- <button class="scalable" type="button" id="<?= $block->getHtmlId() ?>" data-mage-init='{"testConnection":{
- "url": "<?= /* @escapeNotVerified */ $block->getAjaxUrl() ?>",
- "elementId": "<?= $block->getHtmlId() ?>",
- "successText": "<?= /* @escapeNotVerified */ __('Successful! Test again?') ?>",
- "failedText": "<?= /* @escapeNotVerified */ __('Connection failed! Test again?') ?>",
- "fieldMapping": "<?= /* @escapeNotVerified */ $block->getFieldMapping() ?>"}, "validation": {}}'>
- <span><span><span id="<?= $block->getHtmlId() ?>_result"><?= $block->escapeHtml($block->getButtonLabel()) ?></span></span></span>
- </button>
|