2022-03-31 14:08:19 +00:00
|
|
|
<?php
|
|
|
|
|
2023-10-22 22:21:31 +00:00
|
|
|
namespace WP_Piwik\Widget;
|
2022-03-31 14:08:19 +00:00
|
|
|
|
2023-10-22 22:21:31 +00:00
|
|
|
class OptOut extends \WP_Piwik\Widget
|
|
|
|
{
|
2022-03-31 14:08:19 +00:00
|
|
|
|
2023-10-22 22:21:31 +00:00
|
|
|
public $className = __CLASS__;
|
|
|
|
|
|
|
|
protected function configure($prefix = '', $params = array())
|
|
|
|
{
|
|
|
|
$this->parameter = $params;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function show()
|
|
|
|
{
|
|
|
|
$protocol = (isset ($_SERVER ['HTTPS']) && $_SERVER ['HTTPS'] != 'off') ? 'https' : 'http';
|
|
|
|
switch (self::$settings->getGlobalOption('piwik_mode')) {
|
|
|
|
case 'php' :
|
|
|
|
$PIWIK_URL = $protocol . ':' . self::$settings->getGlobalOption('proxy_url');
|
|
|
|
break;
|
|
|
|
case 'cloud' :
|
|
|
|
$PIWIK_URL = 'https://' . self::$settings->getGlobalOption('piwik_user') . '.innocraft.cloud/';
|
|
|
|
break;
|
|
|
|
case 'cloud-matomo':
|
|
|
|
$PIWIK_URL = 'https://' . self::$settings->getGlobalOption('matomo_user') . '.matomo.cloud/';
|
|
|
|
break;
|
|
|
|
default :
|
|
|
|
$PIWIK_URL = self::$settings->getGlobalOption('piwik_url');
|
|
|
|
}
|
|
|
|
$width = (isset($this->parameter['width']) ? esc_attr($this->parameter['width']) : '');
|
|
|
|
$height = (isset($this->parameter['height']) ? esc_attr($this->parameter['height']) : '');
|
|
|
|
$idSite = (isset($this->parameter['idsite']) ? 'idsite=' . (int)$this->parameter['idsite'] . '&' : '');
|
|
|
|
$language = (isset($this->parameter['language']) ? esc_attr($this->parameter['language']) : 'en');
|
|
|
|
$this->out('<iframe frameborder="no" width="' . $width . '" height="' . $height . '" src="' . $PIWIK_URL . 'index.php?module=CoreAdminHome&action=optOut&' . $idSite . 'language=' . $language . '"></iframe>');
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|