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 / SendCloud / SendCloud.l / Helper /
Filename/home/dev2.destoffenstraat.com/app/code/SendCloud/SendCloud.l/Helper/Checkout.php
Size1.39 kb
Permissionrwxrwxrwx
Ownerroot : root
Create time17-Aug-2025 10:26
Last modified06-Apr-2021 18:06
Last accessed22-Aug-2025 23:27
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
<?php

namespace SendCloud\SendCloud\Helper;

use Magento\Framework\App\Helper\AbstractHelper;
use Magento\Framework\App\Helper\Context;
use Magento\Store\Model\ScopeInterface;
use SendCloud\SendCloud\Logger\SendCloudLogger;

/**
* Class Checkout
* @package SendCloud\SendCloud\Helper
*/
class Checkout extends AbstractHelper
{
private $sendCloudLogger;

/**
* Checkout constructor.
* @param Context $context
* @param SendCloudLogger $sendCloudLogger
*/
public function __construct(Context $context, SendCloudLogger $sendCloudLogger)
{
parent::__construct($context);

$this->sendCloudLogger = $sendCloudLogger;
}

/**
* @return bool
*/
public function checkForScriptUrl()
{
$isScriptUrlDefined = true;
$scriptUrl = $this->scopeConfig->getValue('sendcloud/sendcloud/script_url', ScopeInterface::SCOPE_STORE);

if ($scriptUrl == '' || $scriptUrl == null) {
$this->sendCloudLogger->debug('The option service point is not active in SendCloud');
$isScriptUrlDefined = false;
}

return $isScriptUrlDefined;
}

/**
* @return bool|mixed
*/
public function checkIfModuleIsActive()
{
$isActive = $this->scopeConfig->getValue(
'sendcloud/general/enable',
ScopeInterface::SCOPE_STORE
);

return $isActive;
}
}