12345678910111213141516171819202122232425262728 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- ?>
- <div class="page-actions">
- <div class="page-actions-inner">
- <div class="page-actions-buttons">
- <?= $block->getChildHtml() ?>
- <form class="action-element"
- action="<?= $block->escapeUrl($block->getUrl('*/*/refreshStatistics')) ?>"
- method="post">
- <input
- name="form_key"
- type="hidden"
- value="<?= $block->escapeHtmlAttr($block->getFormKey()) ?>"/>
- <button
- class="action-primary"
- type="submit"
- title="<?= $block->escapeHtmlAttr(__('Reload Data')) ?>">
- <?= $block->escapeHtml(__('Reload Data')) ?>
- </button>
- </form>
- </div>
- </div>
- </div>
|