1
0
قرینه از https://github.com/matomo-org/matomo.git synced 2025-08-22 23:17:46 +00:00
Files
matomo/plugins/SitesManager/SiteContentDetection/SiteContentDetectionAbstract.php
Stefan Giehl 7344ad99d5 Fix PHPStan issues in plugins/SitesManager/SiteContentDetection (#23527)
* Fix PHPStan issues in plugins/SitesManager/SiteContentDetection

* update baseline

* remove unneeded access check
2025-08-22 15:26:13 +02:00

141 خطوط
3.7 KiB
PHP

<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik\Plugins\SitesManager\SiteContentDetection;
use Piwik\Piwik;
use Piwik\SiteContentDetector;
abstract class SiteContentDetectionAbstract
{
public const TYPE_TRACKER = 1;
public const TYPE_CMS = 2;
public const TYPE_JS_FRAMEWORK = 3;
public const TYPE_CONSENT_MANAGER = 4;
public const TYPE_JS_CRASH_ANALYTICS = 5;
public const TYPE_OTHER = 99;
public function __construct()
{
}
/**
* Returns the ID of the current detection. Automatically built from the class name (without namespace)
*
* @return string
*/
public static function getId(): string
{
$classParts = explode('\\', static::class);
return end($classParts);
}
/**
* Returns the Name of this detection (e.g. name of CMS, Framework, ...)
*
* @return string
*/
abstract public static function getName(): string;
/**
* Returns the location of the icon of this detection
*
* @return string
*/
public static function getIcon(): string
{
return '';
}
/**
* Returns the content type this detection provides
* May be one of TYPE_TRACKER, TYPE_CMS, TYPE_JS_FRAMEWORK, TYPE_CONSENT_MANAGER
*
* @return int
*/
abstract public static function getContentType(): int;
/**
* Returns the URL to the instruction FAQ on how to integrate Matomo (if applicable)
*
* @return string|null
*/
public static function getInstructionUrl(): ?string
{
return null;
}
/**
* Returns the priority the tab should be displayed with.
*
* @return int
*/
public static function getPriority(): int
{
return 1000;
}
/**
* Returns if the current detection succeeded for the provided site content or not.
*
* @param string|null $data
* @param array<string,string>|null $headers
* @return bool
*/
abstract public function isDetected(?string $data = null, ?array $headers = null): bool;
/**
* Returns the content that should be rendered into a new Tab on the no data page
*
* @param SiteContentDetector $detector
* @return string
*/
public function renderInstructionsTab(SiteContentDetector $detector): string
{
return '';
}
/**
* Returns the content that should be displayed in the Others tab on the no data page
*
* @param SiteContentDetector $detector
* @return string
*/
public function renderOthersInstruction(SiteContentDetector $detector): string
{
return '';
}
/**
* Returns if the method should be recommended. Returns true if the method was detected
*
* @param SiteContentDetector $detector
* @return bool
*/
public function isRecommended(SiteContentDetector $detector): bool
{
return $detector->wasDetected(static::getId());
}
/**
* Returns details used to render the recommendation on no data screen
*
* @param SiteContentDetector $detector
* @return array{title: string, text: string, button: string}
*/
public function getRecommendationDetails(SiteContentDetector $detector): array
{
return [
'title' => Piwik::translate('SitesManager_SiteWithoutDataInstallWithXRecommendation', [static::getName()]),
'text' => Piwik::translate('SitesManager_SiteWithoutDataRecommendationText', [static::getName()]),
'button' => Piwik::translate('SitesManager_SiteWithoutDataInstallWithX', [static::getName()]),
];
}
}