refreshstatistics.phtml 923 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. ?>
  7. <div class="page-actions">
  8. <div class="page-actions-inner">
  9. <div class="page-actions-buttons">
  10. <?= $block->getChildHtml() ?>
  11. <form class="action-element"
  12. action="<?= $block->escapeUrl($block->getUrl('*/*/refreshStatistics')) ?>"
  13. method="post">
  14. <input
  15. name="form_key"
  16. type="hidden"
  17. value="<?= $block->escapeHtmlAttr($block->getFormKey()) ?>"/>
  18. <button
  19. class="action-primary"
  20. type="submit"
  21. title="<?= $block->escapeHtmlAttr(__('Reload Data')) ?>">
  22. <?= $block->escapeHtml(__('Reload Data')) ?>
  23. </button>
  24. </form>
  25. </div>
  26. </div>
  27. </div>