Carts.php 543 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Customer\Controller\Adminhtml\Index;
  7. class Carts extends \Magento\Customer\Controller\Adminhtml\Index
  8. {
  9. /**
  10. * Get shopping carts from all websites for specified client
  11. *
  12. * @return \Magento\Framework\View\Result\Layout
  13. */
  14. public function execute()
  15. {
  16. $this->initCurrentCustomer();
  17. $resultLayout = $this->resultLayoutFactory->create();
  18. return $resultLayout;
  19. }
  20. }