Your IP : 127.0.0.1
<?php
/**
*
* ..::..
* ..::::::::::::..
* ::'''''':''::'''''::
* ::.. ..: : ....::
* :::: ::: : : ::
* :::: ::: : ''' ::
* ::::..:::..::.....::
* ''::::::::::::''
* ''::''
*
*
* NOTICE OF LICENSE
*
* This source file is subject to the Creative Commons License.
* It is available through the world-wide-web at this URL:
* http://creativecommons.org/licenses/by-nc-nd/3.0/nl/deed.en_US
* If you are unable to obtain it through the world-wide-web, please send an email
* to servicedesk@tig.nl so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade this module to newer
* versions in the future. If you wish to customize this module for your
* needs please contact servicedesk@tig.nl for more information.
*
* @copyright Copyright (c) Total Internet Group B.V. https://tig.nl/copyright
* @license http://creativecommons.org/licenses/by-nc-nd/3.0/nl/deed.en_US
*/
namespace TIG\PostNL\Config\Provider;
use Magento\Framework\App\Config\ScopeConfigInterface;
use Magento\Framework\Encryption\Encryptor;
use Magento\Framework\Module\Manager;
use TIG\PostNL\Config\Source\Options\ProductOptions;
abstract class AbstractConfigProvider
{
/**
* @var ScopeConfigInterface
*/
// @codingStandardsIgnoreLine
protected $scopeConfig;
/**
* @var Manager $moduleManager
*/
// @codingStandardsIgnoreLine
protected $moduleManager;
/**
* @var Encryptor
*/
// @codingStandardsIgnoreLine
protected $crypt;
/**
* @var ProductOptions
*/
// @codingStandardsIgnoreLine
protected $productOptions;
/**
* @param ScopeConfigInterface $scopeConfig
* @param Manager $moduleManager
* @param Encryptor $crypt
* @param ProductOptions $productOptions
*/
public function __construct(
ScopeConfigInterface $scopeConfig,
Manager $moduleManager,
Encryptor $crypt,
ProductOptions $productOptions
) {
$this->scopeConfig = $scopeConfig;
$this->moduleManager = $moduleManager;
$this->crypt = $crypt;
$this->productOptions = $productOptions;
}
/**
* Get Config value with xpath
*
* @param $xpath
* @param null $store
*
* @return mixed
*/
// @codingStandardsIgnoreLine
protected function getConfigFromXpath($xpath, $store = null)
{
return $this->scopeConfig->getValue(
$xpath,
\Magento\Store\Model\ScopeInterface::SCOPE_STORE,
$store
);
}
/**
* @return bool
*/
// @codingStandardsIgnoreLine
protected function isModuleOutputEnabled()
{
return $this->moduleManager->isOutputEnabled('TIG_PostNL');
}
}