1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-14 04:42:04 +02:00

[ticket/16510] Added migration that adds missing config entries

PHPBB3-16510
This commit is contained in:
kasimi 2020-06-03 12:39:04 +02:00
parent e9bea9dec0
commit 65d825b62c
No known key found for this signature in database
GPG Key ID: 3163AB573241193A
2 changed files with 65 additions and 1 deletions

View File

@ -0,0 +1,64 @@
<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/
namespace phpbb\db\migration\data\v32x;
use phpbb\db\migration\migration_interface;
use phpbb\db\migrator;
class add_missing_config extends \phpbb\db\migration\container_aware_migration
{
static public function depends_on()
{
return [
'\phpbb\db\migration\data\v32x\v329',
];
}
public function update_data()
{
$migration_classes = [
'\phpbb\db\migration\data\v30x\release_3_0_3_rc1',
'\phpbb\db\migration\data\v30x\release_3_0_6_rc1',
'\phpbb\db\migration\data\v31x\add_jabber_ssl_context_config_options',
'\phpbb\db\migration\data\v31x\add_smtp_ssl_context_config_options',
'\phpbb\db\migration\data\v31x\update_hashes',
'\phpbb\db\migration\data\v320\font_awesome_update',
'\phpbb\db\migration\data\v320\text_reparser',
'\phpbb\db\migration\data\v32x\cookie_notice_p2',
];
/** @var migrator $migrator */
$migrator = $this->container->get('migrator');
$update_data = [];
foreach ($migration_classes as $migration_class)
{
/** @var migration_interface $migration */
$migration = $migrator->get_migration($migration_class);
$migration_update_data = $migration->update_data();
foreach ($migration_update_data as $entry)
{
if ($entry[0] == 'config.add')
{
$update_data[] = $entry;
}
}
}
return $update_data;
}
}

View File

@ -948,7 +948,7 @@ class migrator
* @param string $name Name of the migration
* @return \phpbb\db\migration\migration
*/
protected function get_migration($name)
public function get_migration($name)
{
$migration = new $name($this->config, $this->db, $this->db_tools, $this->phpbb_root_path, $this->php_ext, $this->table_prefix);