1
0
قرینه از https://github.com/matomo-org/matomo.git synced 2025-08-21 22:47:43 +00:00
Files
matomo/core/Updates/5.3.0-rc1.php
caddoo a37fad545f Remove ImprovedAllWebsitesDashboard feature flag, and make easier to support ff removal in custom migrations (#23042)
* Remove ImprovedAllWebsitesDashboard feature flag, and make easier to support in custom migrations

* Update UI screenshots

* Delete tests so they pass

* Fix possibly flaky tooltip test

* Update core/Updater/Migration/Custom.php

Co-authored-by: Stefan Giehl <stefan@matomo.org>

* Update core/Updater/Migration/Custom.php

Co-authored-by: Stefan Giehl <stefan@matomo.org>

* Remove old test screenshots

* Pass in array

---------

Co-authored-by: Stefan Giehl <stefan@matomo.org>
2025-02-20 10:02:12 +01:00

48 خطوط
1.1 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\Updates;
use Piwik\Plugins\FeatureFlags\FeatureFlagManager;
use Piwik\Updater;
use Piwik\Updater\Migration\Custom as CustomMigration;
use Piwik\Updater\Migration\Factory as MigrationFactory;
use Piwik\Updates;
class Updates_5_3_0_rc1 extends Updates
{
/**
* @var MigrationFactory
*/
private $migration;
public function __construct(MigrationFactory $factory)
{
$this->migration = $factory;
}
public function getMigrations(Updater $updater)
{
$commandString = './console featureflags:delete ImprovedAllWebsitesDashboard';
$deleteFeatureFlag = new CustomMigration(
[FeatureFlagManager::class, 'deleteFeatureFlag'],
$commandString,
['ImprovedAllWebsitesDashboard']
);
return [$deleteFeatureFlag];
}
public function doUpdate(Updater $updater)
{
$updater->executeMigrations(__FILE__, $this->getMigrations($updater));
}
}