47 lines
1.2 KiB
PHP
47 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* Piwik - free/libre analytics platform
|
|
*
|
|
* @link http://piwik.org
|
|
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
|
*
|
|
*/
|
|
|
|
namespace Piwik\Updates;
|
|
|
|
use Piwik\DataAccess\ArchiveTableCreator;
|
|
use Piwik\Updater;
|
|
use Piwik\Updates;
|
|
|
|
class Updates_2_10_0_b10 extends Updates
|
|
{
|
|
|
|
public function getMigrationQueries(Updater $updater)
|
|
{
|
|
$sqls = array();
|
|
|
|
$archiveTables = ArchiveTableCreator::getTablesArchivesInstalled();
|
|
|
|
$archiveBlobTables = array_filter($archiveTables, function ($name) {
|
|
return ArchiveTableCreator::getTypeFromTableName($name) == ArchiveTableCreator::BLOB_TABLE;
|
|
});
|
|
|
|
foreach ($archiveBlobTables as $table) {
|
|
$sqls["UPDATE " . $table . " SET name = 'DevicePlugins_plugin' WHERE name = 'UserSettings_plugin'"] = false;
|
|
}
|
|
|
|
return $sqls;
|
|
}
|
|
|
|
public function doUpdate(Updater $updater)
|
|
{
|
|
$pluginManager = \Piwik\Plugin\Manager::getInstance();
|
|
|
|
try {
|
|
$pluginManager->activatePlugin('DevicePlugins');
|
|
} catch (\Exception $e) {
|
|
}
|
|
|
|
$updater->executeMigrationQueries(__FILE__, $this->getMigrationQueries($updater));
|
|
}
|
|
}
|