OrdersGrid.php 496 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. *
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. namespace Magento\Paypal\Controller\Adminhtml\Billing\Agreement;
  8. class OrdersGrid extends \Magento\Paypal\Controller\Adminhtml\Billing\Agreement
  9. {
  10. /**
  11. * Related orders ajax action
  12. *
  13. * @return void
  14. */
  15. public function execute()
  16. {
  17. $this->_initBillingAgreement();
  18. $this->_view->loadLayout(false);
  19. $this->_view->renderLayout();
  20. }
  21. }