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 / a / home / dev2.destoffenstraat.com / app / code / Swissup / SubscribeAtCheckout / Helper /
Filename/home/a/home/dev2.destoffenstraat.com/app/code/Swissup/SubscribeAtCheckout/Helper/Config.php
Size3.98 kb
Permissionrwxrwxrwx
Ownerroot : root
Create time21-Aug-2025 12:26
Last modified19-Aug-2021 16:34
Last accessed22-Aug-2025 22:13
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
<?php

namespace Swissup\SubscribeAtCheckout\Helper;

use Magento\Customer\Model\Session as CustomerSession;
use Magento\Checkout\Model\Session as CheckoutSession;
use Magento\Framework\App\Helper\Context;
use Magento\Framework\App\Helper\AbstractHelper;

class Config extends AbstractHelper
{
/**
* @var string
*/
const CONFIG_PATH_ENABLED = 'subscribe_at_checkout/general/enabled';

/**
* @var string
*/
const CONFIG_PATH_FIELD_LABEL = 'subscribe_at_checkout/general/field_label';

/**
* @var string
*/
const CONFIG_PATH_FIELD_NOTICE = 'subscribe_at_checkout/general/field_notice';

/**
* @var string
*/
const CONFIG_PATH_DEFAULT_VALUE = 'subscribe_at_checkout/general/default_value';

/**
* @var CustomerSession
*/
private $customerSession;

/**
* @var CheckoutSession
*/
private $checkoutSession;

/**
* @param Context $context
* @param Session $customerSession
*/
public function __construct(
Context $context,
CustomerSession $customerSession,
CheckoutSession $checkoutSession
) {
parent::__construct($context);

$this->customerSession = $customerSession;
$this->checkoutSession = $checkoutSession;
}

/**
* Get config to use for component rendering
*
* @return array
*/
public function getComponentConfig()
{
return [
'template' => 'Swissup_SubscribeAtCheckout/form/element/subscription',
'elementTmpl' => 'ui/form/element/checkbox',
'label' => $this->getFieldLabel(),
'notice' => $this->getFieldNotice(),
'value' => $this->getDefaultCheckboxValue(),
'componentDisabled' => $this->isComponentDisabled(),
];
}

/**
* Get config to use for component rendering inside shipping address section
*
* @return array
*/
public function getComponentConfigForStandardQuote()
{
$config = $this->getComponentConfig();

if ($this->isVirtualQuote()) {
$config['componentDisabled'] = true;
}

return $config;
}

/**
* Get config to use for component rendering inside payment methods section
*
* @return array
*/
public function getComponentConfigForVirtualQuote()
{
$config = $this->getComponentConfig();

if (!$this->isVirtualQuote()) {
$config['componentDisabled'] = true;
}

return $config;
}

/**
* Retrieve isEnabled flag
*
* @return boolean
*/
public function isModuleEnabled()
{
return $this->scopeConfig->getValue(
self::CONFIG_PATH_ENABLED,
\Magento\Store\Model\ScopeInterface::SCOPE_STORE
);
}

/**
* @return boolean
*/
private function isCustomerLoggedIn()
{
return $this->customerSession->isLoggedIn();
}

/**
* @return boolean
*/
public function isComponentDisabled()
{
return !$this->isModuleEnabled() || $this->isCustomerLoggedIn();
}

/**
* @return string
*/
public function getFieldLabel()
{
return $this->scopeConfig->getValue(
self::CONFIG_PATH_FIELD_LABEL,
\Magento\Store\Model\ScopeInterface::SCOPE_STORE
);
}

/**
* @return string
*/
public function getFieldNotice()
{
return $this->scopeConfig->getValue(
self::CONFIG_PATH_FIELD_NOTICE,
\Magento\Store\Model\ScopeInterface::SCOPE_STORE
);
}

/**
* @return boolean
*/
public function getDefaultCheckboxValue()
{
return (bool) $this->scopeConfig->getValue(
self::CONFIG_PATH_DEFAULT_VALUE,
\Magento\Store\Model\ScopeInterface::SCOPE_STORE
);
}

/**
* @return bool
*/
private function isVirtualQuote()
{
return $this->checkoutSession->getQuote()->isVirtual();
}
}