Файловый менеджер - Редактировать - /var/www/html/administrator/components/com_akeebabackup/vendor/akeeba/stats_collector/src/Sender/Sender.php
Ðазад
<?php /* * @package stats_collector * @copyright Copyright (c)2023-2026 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace Akeeba\UsageStats\Collector\Sender; use Akeeba\UsageStats\Collector\Sender\Adapter\AdapterInterface; use Akeeba\UsageStats\Collector\Sender\Adapter\AkeebaBackupWordPressAdapter; use Akeeba\UsageStats\Collector\Sender\Adapter\AkeebaSoloAdapter; use Akeeba\UsageStats\Collector\Sender\Adapter\DarkLinkAdapter; use Akeeba\UsageStats\Collector\Sender\Adapter\JoomlaAdapter; use Akeeba\UsageStats\Collector\Sender\Adapter\PanopticonAdapter; use Akeeba\UsageStats\Collector\Sender\Adapter\WordPressAdapter; class Sender { private const ADAPTERS = [ JoomlaAdapter::class, AkeebaBackupWordPressAdapter::class, AkeebaSoloAdapter::class, WordPressAdapter::class, DarkLinkAdapter::class, PanopticonAdapter::class, ]; /** * The adapter to get the site's URL * * @var null|AdapterInterface * @since 1.0.0 */ private $adapter = null; /** * The URL to send the statistics to * * @var string * @since 1.0.0 */ private $serverUrl; /** * The request timeout for sending the usage statistics, in seconds * * @var int * @since 1.0.0 */ private $timeout; public function __construct(string $serverUrl, int $timeout) { $this->serverUrl = $serverUrl; $this->timeout = $timeout; } /** * Send the usage statistics information to the server * * @param array $queryParameters The information to send * * @return void * @since 1.0.0 */ public function sendStatistics(array $queryParameters): void { $adapter = $this->getAdapter(); if ($adapter === null) { return; } $adapter->sendStatistics($queryParameters); } /** * Get the appropriate adapter for sending statistics to the server * * @return AdapterInterface|null * @since 1.0.0 */ private function getAdapter(): ?AdapterInterface { if ($this->adapter !== null) { return $this->adapter; } foreach (self::ADAPTERS as $className) { if (!class_exists($className)) { continue; } /** @var AdapterInterface $o */ $o = new $className; if (!$o->isAvailable()) { continue; } $o->setServerUrl($this->serverUrl); $o->setTimeout($this->timeout); return $this->adapter = $o; } return null; } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка