![]() 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/cartforge.co/app/code/Xtento/XtCore/Helper/ |
<?php /** * Product: Xtento_XtCore * ID: u66QkJ5rBwmimhUzUElhIKqqWRvsbhC3WLqSMk5AjmQ= * Last Modified: 2017-08-16T08:52:13+00:00 * File: app/code/Xtento/XtCore/Helper/Shipping.php * Copyright: Copyright (c) XTENTO GmbH & Co. KG <[email protected]> / All rights reserved. */ namespace Xtento\XtCore\Helper; class Shipping extends \Magento\Framework\App\Helper\AbstractHelper { /** * Core store config * @var \Magento\Framework\App\Config\ScopeConfigInterface */ protected $scopeConfig; /** * Shipping constructor. * * @param \Magento\Framework\App\Helper\Context $context */ public function __construct( \Magento\Framework\App\Helper\Context $context ) { parent::__construct($context); $this->scopeConfig = $context->getScopeConfig(); } public function determineCarrierTitle($carrierCode, $shippingMethod = '', $storeId = null) { if ($carrierCode == 'custom') { $carrierTitle = (empty($shippingMethod)) ? __('Custom') : $shippingMethod; } else { $carrierTitle = $this->scopeConfig->getValue( 'carriers/' . $carrierCode . '/title', \Magento\Store\Model\ScopeInterface::SCOPE_STORE, $storeId ); if (empty($carrierTitle)) { // Try to get carrier from XTENTO custom carrier trackers extension $carrierTitle = $this->scopeConfig->getValue( 'customtrackers/' . $carrierCode . '/title', \Magento\Store\Model\ScopeInterface::SCOPE_STORE, $storeId ); } } return $carrierTitle; } }