b374k
m1n1 1.01
Apache/2.4.41 (Ubuntu)
Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64
uid=33(www-data) gid=33(www-data) groups=33(www-data)
server ip : 62.171.164.128 | your ip : 127.0.0.1
safemode OFF
 >  / home / dev2.destoffenstraat.com / app / code / Infortis / Base / Helper /
Filename/home/dev2.destoffenstraat.com/app/code/Infortis/Base/Helper/AbstractThemeHelper.php
Size3.02 kb
Permissionrwxrwxrwx
Ownerroot : root
Create time17-Aug-2025 10:26
Last modified06-Apr-2021 18:06
Last accessed22-Aug-2025 07:15
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
<?php

namespace Infortis\Base\Helper;

use Magento\Framework\App\Config\ScopeConfigInterface;
use Magento\Framework\App\Helper\AbstractHelper;
use Magento\Framework\App\Helper\Context;
use Magento\Store\Model\ScopeInterface;

abstract class AbstractThemeHelper extends AbstractHelper
{
/**
* Section name of module configuration
*/
const CONFIG_SECTION_SETTINGS = 'theme_settings';
const CONFIG_SECTION_DESIGN = 'theme_design';
const CONFIG_SECTION_LAYOUT = 'theme_layout';

/**
* @var ScopeConfigInterface
*/
protected $_configScopeConfigInterface;

/**
* @param Context $context
*/
public function __construct(
Context $context
) {
$this->_configScopeConfigInterface = $context->getScopeConfig();
parent::__construct($context);
}

/**
* Get theme's main configuration (single option)
*
* @return string
*/
public function getCfg($optionString, $storeCode = NULL)
{
return $this->_configScopeConfigInterface->getValue(self::CONFIG_SECTION_SETTINGS . '/' . $optionString, ScopeInterface::SCOPE_STORE, $storeCode);
}

/**
* Get theme's design configuration (single option)
*
* @return string
*/
public function getCfgDesign($optionString, $storeCode = NULL)
{
return $this->_configScopeConfigInterface->getValue(self::CONFIG_SECTION_DESIGN . '/' . $optionString, ScopeInterface::SCOPE_STORE, $storeCode);
}

/**
* Get theme's layout configuration (single option)
*
* @return string
*/
public function getCfgLayout($optionString, $storeCode = NULL)
{
return $this->_configScopeConfigInterface->getValue(self::CONFIG_SECTION_LAYOUT . '/' . $optionString, ScopeInterface::SCOPE_STORE, $storeCode);

}

/**
* Get selected section from the configuration
*
* @return array
*/
public function getCfgSection($section, $storeCode = NULL)
{
return $this->_configScopeConfigInterface->getValue($section, ScopeInterface::SCOPE_STORE, $storeCode);
}

/**
* Special method for assets generation.
* Get selected section from the configuration: theme's design section
*
* @return array
*/
public function getCfgSectionDesign($storeCode = NULL)
{
return $this->getCfgSection(self::CONFIG_SECTION_DESIGN, $storeCode);
}

/**
* Special method.
* Get selected group from theme's main configuration
*
* @return array
*/
//TODO: new method name
//public function getCfgGroupSettings($group, $storeCode = NULL)
public function getCfgGroup($group, $storeCode = NULL)
{
//TODO: new code, uses existing method to simplify the code.
//return $this->getCfgSection(self::CONFIG_SECTION_SETTINGS . '/' . $group, ScopeInterface::SCOPE_STORE, $storeCode);

return $this->_configScopeConfigInterface->getValue(self::CONFIG_SECTION_SETTINGS . '/' . $group, ScopeInterface::SCOPE_STORE, $storeCode);
}

}