1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-11 03:04:09 +02:00

Merge pull request #6540 from rubencm/ticket/17184

[ticket/17184] Remove subfolders option in local storage
This commit is contained in:
Marc Alexander
2023-10-23 21:24:34 +02:00
committed by GitHub
7 changed files with 44 additions and 255 deletions

View File

@@ -0,0 +1,42 @@
<?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\v400;
use phpbb\db\migration\migration;
class storage_adapter_local_subfolders_remove extends migration
{
public function effectively_installed()
{
return !$this->config->offsetExists('storage\\attachment\\config\\subfolders') &&
!$this->config->offsetExists('storage\\avatar\\config\\subfolders') &&
!$this->config->offsetExists('storage\\backup\\config\\subfolders');
}
public static function depends_on()
{
return [
'\phpbb\db\migration\data\v400\storage_adapter_local_subfolders',
];
}
public function update_data()
{
return [
['config.remove', ['storage\\attachment\\config\\subfolders']],
['config.remove', ['storage\\avatar\\config\\subfolders']],
['config.remove', ['storage\\backup\\config\\subfolders']],
];
}
}