|
Server : Apache System : Linux s1230 5.15.0-139-generic #149~20.04.1 SMP Tue Jul 14 11:21:49 UTC 2026 x86_64 User : p141464 ( 418825) PHP Version : 7.4.33.12 Disable Function : NONE Directory : /html/KMU-CSR-PLANER/wp-content/plugins/borlabs-cookie/classes/Cookie/Frontend/Services/ |
Upload File : |
<?php
/*
* ----------------------------------------------------------------------
*
* Borlabs Cookie
* developed by Borlabs
*
* ----------------------------------------------------------------------
*
* Copyright 2018-2021 Borlabs - Benjamin A. Bornschein. All rights reserved.
* This file may not be redistributed in whole or significant part.
* Content of this file is protected by international copyright laws.
*
* ----------------- Borlabs Cookie IS NOT FREE SOFTWARE -----------------
*
* @copyright Borlabs - Benjamin A. Bornschein, https://borlabs.io
* @author Benjamin A. Bornschein, Borlabs ben@borlabs.io
*
*/
namespace BorlabsCookie\Cookie\Frontend\Services;
class Tidio
{
private static $instance;
public static function getInstance()
{
if (self::$instance === null) {
self::$instance = new self();
}
return self::$instance;
}
/**
* __construct function.
*/
public function __construct()
{
add_action('borlabsCookie/cookie/edit/template/settings/Tidio', [$this, 'additionalSettingsTemplate']);
}
public function __clone()
{
trigger_error('Cloning is not allowed.', E_USER_ERROR);
}
public function __wakeup()
{
trigger_error('Unserialize is forbidden.', E_USER_ERROR);
}
/**
* additionalSettingsTemplate function.
*
* @param mixed $data
*/
public function additionalSettingsTemplate($data)
{
?>
<div class="form-group row">
<label
class="col-sm-4 col-form-label"><?php
_ex('Integration', 'Backend / Cookie / Tidio / Label', 'borlabs-cookie'); ?></label>
<div class="col-sm-8">
<div
class="alert alert-info mt-2"><?php
_ex(
'In Tidio click on <strong>Channels > Live chat > Integration > JavaScript</strong>, copy the JavaScript and paste it into the <strong>Opt-in Code</strong> field below.',
'Backend / Cookie / Tidio / Text',
'borlabs-cookie'
); ?></div>
</div>
</div>
<?php
}
/**
* getDefault function.
*/
public function getDefault()
{
return [
'cookieId' => 'tidio',
'service' => 'Tidio',
'name' => 'Tidio',
'provider' => 'Tidio LLC, 220C Blythe Road, London W14 0HH, United Kingdom',
'purpose' => _x(
'This website is using Tidio, a chat platform that connects users with the customer support of our website. The personal data you enter within the chat are stored within the Tidio application.',
'Frontend / Cookie / Tidio / Text',
'borlabs-cookie'
),
'privacyPolicyURL' => _x(
'https://www.tidio.com/privacy-policy/',
'Frontend / Cookie / Tidio / Text',
'borlabs-cookie'
),
'hosts' => [
'*.tidio.co, *.tidiochat.com',
],
'cookieName' => 'tidio_state_*',
'cookieExpiry' => _x(
'Until the user deletes the local storage.',
'Frontend / Cookie / Tidio / Text',
'borlabs-cookie'
),
'optInJS' => '',
'optOutJS' => '',
'fallbackJS' => '',
'settings' => [
'blockCookiesBeforeConsent' => false,
'prioritize' => false,
],
'status' => true,
'undeletetable' => false,
];
}
}