Transactions.php 546 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Sales\Controller\Adminhtml\Order;
  7. use Magento\Backend\App\Action;
  8. class Transactions extends \Magento\Sales\Controller\Adminhtml\Order
  9. {
  10. /**
  11. * Order transactions grid ajax action
  12. *
  13. * @return \Magento\Framework\View\Result\Layout
  14. */
  15. public function execute()
  16. {
  17. $this->_initOrder();
  18. $resultLayout = $this->resultLayoutFactory->create();
  19. return $resultLayout;
  20. }
  21. }