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/mageworx/module-seoxtemplates/Model/DataProvider/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/vendor/mageworx/module-seoxtemplates/Model/DataProvider/Brand.php
<?php
/**
 * Copyright © MageWorx. All rights reserved.
 * See LICENSE.txt for license details.
 */

namespace MageWorx\SeoXTemplates\Model\DataProvider;

use Magento\Framework\App\ResourceConnection;
use MageWorx\SeoXTemplates\Model\ConverterBrandFactory;
use MageWorx\SeoXTemplates\Helper\Store as HelperStore;
use Magento\Store\Model\StoreManagerInterface;

class Brand extends \MageWorx\SeoXTemplates\Model\DataProvider
{
    /**
     * @var \Magento\Framework\DB\Adapter\AdapterInterface
     */
    protected $_connection;

    /**
     *
     * @var int
     */
    protected $_defaultStore;

    /**
     * Store ID for obtaining and preparing data
     *
     * @var int
     */
    protected $_storeId;

    /**
     * @var HelperStore
     */
    protected $helperStore;

    /**
     *
     * @var array
     */
    protected $_attributeCodes = [];

    /**
     *
     * @var \Magento\Framework\Data\Collection
     */
    protected $_collection;

    /**
     * @var ConverterBrandFactory
     */
    protected $converterBrandFactory;

    /**
     * @var \Magento\Store\Model\StoreManagerInterface
     */
    protected $storeManager;

    /**
     * Brand constructor.
     *
     * @param StoreManagerInterface $storeManager
     * @param ResourceConnection $resource
     * @param ConverterBrandFactory $converterBrandFactory
     * @param HelperStore $helperStore
     */
    public function __construct(
        StoreManagerInterface $storeManager,
        ResourceConnection $resource,
        ConverterBrandFactory $converterBrandFactory,
        HelperStore $helperStore
    ) {
        parent::__construct($resource);
        $this->converterBrandFactory = $converterBrandFactory;
        $this->helperStore                 = $helperStore;
        $this->storeManager                = $storeManager;
    }

    /**
     * @param \Magento\Framework\Data\Collection $collection
     * @param \MageWorx\SeoXTemplates\Model\AbstractTemplate $template
     * @param null $customStoreId
     * @return array
     * @throws \Magento\Framework\Exception\LocalizedException
     */
    public function getData($collection, $template, $customStoreId = null)
    {
        $data = [];

        $targetPropertyList = $template->getAttributeCodesByType();
        $targetProperty     = $targetPropertyList[0];
        $storeId    = $this->getStoreId($template, $customStoreId);
        /** @var \MageWorx\SeoXTemplates\Model\Template\Brand $brand */
        foreach ($collection as $brand) {
            $converter      = $this->converterBrandFactory->create($targetProperty);
            $brand->setStoreId($storeId);
            $attributeValue = $converter->convert($brand, $template->getCode());
            $data[$brand->getId()] = [
                'brand_id'  => $brand->getId(),
                'title'           => $brand->getOptionLabel(),
                'store_id'        => $storeId,
                'store_name'      => $this->storeManager->getStore($storeId)->getName(),
                'target_property' => $targetProperty,
                'old_value'       => $brand->getStoreValue($targetProperty, $storeId, true),
                'value'           => $attributeValue
            ];
        }

        return $data;
    }

    /**
     * @param \MageWorx\SeoXTemplates\Model\AbstractTemplate $template
     * @param int|null $customStoreId
     * @return int|null
     */
    protected function getStoreId($template, $customStoreId = null)
    {
        if ($template->getUseForDefaultValue()) {
            return $template->getStoreId();
        }

        if ($customStoreId) {
            return $customStoreId;
        }

        if ($template->getIsSingleStoreMode()) {
            return $this->helperStore->getCurrentStoreId();
        }

        return $template->getStoreId();
    }
}

Spamworldpro Mini