قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-21 22:47:43 +00:00

* 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>
48 خطوط
1.1 KiB
PHP
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));
|
|
}
|
|
}
|