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 / Trustpilot / Reviews / Helper /
Filename/home/dev2.destoffenstraat.com/app/code/Trustpilot/Reviews/Helper/TrustpilotPluginStatus.php
Size1.04 kb
Permissionrwxrwxrwx
Ownerroot : root
Create time17-Aug-2025 10:26
Last modified25-Feb-2022 04:42
Last accessed22-Aug-2025 20:03
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
<?php

namespace Trustpilot\Reviews\Helper;

use Magento\Framework\App\Helper\AbstractHelper;
use Trustpilot\Reviews\Helper\Data;

class TrustpilotPluginStatus extends AbstractHelper
{
const TRUSTPILOT_SUCCESSFUL_STATUS = 200;
private $_helper;

public function __construct(Data $helper)
{
$this->_helper = $helper;
}

public function setPluginStatus($response, $storeId)
{
$data = json_encode(
array(
'pluginStatus' => $response['code'],
'blockedDomains' => isset($response['data']) ? $response['data'] : array(),
)
);
$this->_helper->setConfig('plugin_status', $data, 'stores', $storeId);
}
public function checkPluginStatus($origin, $storeId)
{
$data = json_decode($this->_helper->getConfig('plugin_status', $storeId, 'stores'));
if (in_array(parse_url($origin, PHP_URL_HOST), $data->blockedDomains)) {
return $data->pluginStatus;
}
return self::TRUSTPILOT_SUCCESSFUL_STATUS;
}
}