1
0
قرینه از https://github.com/matomo-org/matomo.git synced 2025-08-22 15:07:44 +00:00
Files
matomo/plugins/CoreUpdater/ReleaseChannel/LatestStable.php
Stefan Giehl 15bbb307c7 Ensure LatestStable release channel uses the version provided from API (#22603)
* Ensure LatestStable release channel uses the version provided from API

* Adjust test and link in UI

* always download latest stable if no version provided
2024-09-20 15:58:32 +02:00

37 خطوط
677 B
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\CoreUpdater\ReleaseChannel;
use Piwik\Piwik;
use Piwik\Plugins\CoreUpdater\ReleaseChannel;
class LatestStable extends ReleaseChannel
{
public function getId()
{
return 'latest_stable';
}
public function getName()
{
return Piwik::translate('CoreUpdater_LatestStableRelease');
}
public function getDescription()
{
return Piwik::translate('General_Recommended');
}
public function getOrder()
{
return 10;
}
}