![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-sales/Block/Order/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Block\Order; use Magento\Framework\View\Element\Template\Context; use Magento\Customer\Model\Session; use Magento\Sales\Model\Order\Config; use Magento\Sales\Model\ResourceModel\Order\CollectionFactoryInterface; use Magento\Store\Model\StoreManagerInterface; use Magento\Framework\App\ObjectManager; /** * Sales order history block * * @api * @since 100.0.2 */ class Recent extends \Magento\Framework\View\Element\Template { /** * Limit of orders */ const ORDER_LIMIT = 5; /** * @var CollectionFactoryInterface */ protected $_orderCollectionFactory; /** * @var \Magento\Customer\Model\Session */ protected $_customerSession; /** * @var \Magento\Sales\Model\Order\Config */ protected $_orderConfig; /** * @var \Magento\Store\Model\StoreManagerInterface */ private $storeManager; /** * @param \Magento\Framework\View\Element\Template\Context $context * @param CollectionFactoryInterface $orderCollectionFactory * @param \Magento\Customer\Model\Session $customerSession * @param \Magento\Sales\Model\Order\Config $orderConfig * @param array $data * @param \Magento\Store\Model\StoreManagerInterface $storeManager */ public function __construct( Context $context, CollectionFactoryInterface $orderCollectionFactory, Session $customerSession, Config $orderConfig, array $data = [], StoreManagerInterface $storeManager = null ) { $this->_orderCollectionFactory = $orderCollectionFactory; $this->_customerSession = $customerSession; $this->_orderConfig = $orderConfig; $this->_isScopePrivate = true; $this->storeManager = $storeManager ?: ObjectManager::getInstance() ->get(StoreManagerInterface::class); parent::__construct($context, $data); } /** * @inheritDoc */ protected function _construct() { parent::_construct(); $this->getRecentOrders(); } /** * Get recently placed orders. By default they will be limited by 5. */ private function getRecentOrders() { $customerId = $this->_customerSession->getCustomerId(); $orders = $this->_orderCollectionFactory->create($customerId)->addAttributeToSelect( '*' )->addAttributeToFilter( 'customer_id', $customerId )->addAttributeToFilter( 'store_id', $this->storeManager->getStore()->getId() )->addAttributeToFilter( 'status', ['in' => $this->_orderConfig->getVisibleOnFrontStatuses()] )->addAttributeToSort( 'created_at', 'desc' )->setPageSize( self::ORDER_LIMIT )->load(); $this->setOrders($orders); } /** * Get order view URL * * @param object $order * @return string */ public function getViewUrl($order) { return $this->getUrl('sales/order/view', ['order_id' => $order->getId()]); } /** * Get order track URL * * @param object $order * @return string * @deprecated 102.0.3 Action does not exist * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ public function getTrackUrl($order) { //phpcs:ignore Magento2.Functions.DiscouragedFunction trigger_error('Method is deprecated', E_USER_DEPRECATED); return ''; } /** * @inheritDoc */ protected function _toHtml() { if ($this->getOrders()->getSize() > 0) { return parent::_toHtml(); } return ''; } /** * Get reorder URL * * @param object $order * @return string */ public function getReorderUrl($order) { return $this->getUrl('sales/order/reorder', ['order_id' => $order->getId()]); } }