قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-22 15:07:44 +00:00

* Ensure LatestStable release channel uses the version provided from API * Adjust test and link in UI * always download latest stable if no version provided
37 خطوط
677 B
PHP
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;
|
|
}
|
|
}
|