Spamworldpro Mini Shell
Spamworldpro


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/wyomind/framework/Helper/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/vendor/wyomind/framework/Helper/Msi.php
<?php
/**
 * Copyright © 2020 Wyomind. All rights reserved.
 * See LICENSE.txt for license details.
 */

namespace Wyomind\Framework\Helper;

use Magento\Framework\App\DeploymentConfig;
use Magento\Framework\App\Helper\Context;
use Magento\Framework\Module\ModuleList;
use Magento\Framework\ObjectManagerInterface;
use Magento\Store\Model\StoreManager;
use Wyomind\Framework\Model\ResourceModel\ConfigFactory;

/**
 * Class Heartbeat
 * @package Wyomind\Framework\Helper
 */
class Msi extends \Wyomind\Framework\Helper\Module
{

    /** @var \Magento\Inventory\Model\ResourceModel\Source\Collection */
    protected $sourceCollection = null;

    /**
     * @var StoreManager
     */
    protected $storeManager;
    /**
     * @var ConfigFactory
     */
    protected $configFactory;

    /**
     * Msi constructor.
     * @param ObjectManagerInterface $objectManager
     * @param ModuleList $moduleList
     * @param Context $context
     * @throws \Magento\Framework\Exception\FileSystemException
     */
    public function __construct(
        ObjectManagerInterface $objectManager,
        ModuleList             $moduleList,
        Context                $context,
        StoreManager           $storeManager,
        ConfigFactory          $configFactory,
        DeploymentConfig       $deploymentConfig
    ) {
    
        parent::__construct($objectManager, $moduleList, $context, $storeManager, $configFactory, $deploymentConfig);

        if ($this->moduleIsEnabled("Magento_Inventory") && $this->moduleIsEnabled("Magento_InventorySales")) {
            if (class_exists("\Magento\Inventory\Model\ResourceModel\Source\Collection")) {
                $this->sourceCollection = $objectManager->get("\Magento\Inventory\Model\ResourceModel\Source\Collection");
            }
        }


    }

    public function isMultiSource()
    {
        $sourcesCount = 0;
        $sourceCollection = $this->sourceCollection;
        $sourceCollection->addFieldToFilter('enabled', ['eq' => 1]);
        if ($sourceCollection != null) {
            $sourcesCount = $sourceCollection->getSize();
        }
        return $sourcesCount > 1;

    }
}

Spamworldpro Mini