![]() 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/extmag/shiplab/ViewModel/Order/Email/Shipment/ |
<?php /** * Copyright © Extmag. All rights reserved. */ namespace Extmag\Shiplab\ViewModel\Order\Email\Shipment; use Extmag\Shiplab\Helper\Manager; use Extmag\Shiplab\Model\ResourceModel\Label\Collection; use Extmag\Shiplab\Model\ResourceModel\Label\CollectionFactory; use Magento\Framework\View\Element\Block\ArgumentInterface; class Tracking implements ArgumentInterface { /** * @var CollectionFactory */ private $labelCollectionFactory; /** * @var Manager */ public $manager; public function __construct( CollectionFactory $labelCollectionFactory, Manager $manager ) { $this->labelCollectionFactory = $labelCollectionFactory; $this->manager = $manager; } public function getLabelByTracking($track) { /** * @var Collection $collection */ $collection = $this->labelCollectionFactory->create(); $collection->addFieldToFilter('master_id', $track)->setCurPage(1)->setPageSize(1); if ($collection->count() > 0) { return $collection->getFirstItem(); } return null; } public function getTrackingLink($trackingLink, $carrier, $_item) { return $trackingLink; } }