matomo / plugins /CoreUpdater /ReleaseChannel /LatestStable.php
Leon4gr45's picture
Upload source files chunk 33
9046370 verified
Raw
History Blame Contribute Delete
677 Bytes
<?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;
}
}