1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-10 18:54:08 +02:00

[ticket/17361] Use storage in commands create and delete thumbnail

PHPBB-17361
This commit is contained in:
Ruben Calvo
2024-11-28 22:19:04 +01:00
parent 6d9a8ae8af
commit a8399c1431
4 changed files with 98 additions and 51 deletions

View File

@@ -12,6 +12,8 @@
*/
namespace phpbb\console\command\thumbnail;
use phpbb\language\language;
use phpbb\user;
use Symfony\Component\Console\Command\Command as symfony_command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\ArrayInput;
@@ -19,6 +21,23 @@ use Symfony\Component\Console\Output\OutputInterface;
class recreate extends \phpbb\console\command\command
{
/**
* @var language
*/
protected $language;
/**
* Constructor
*
* @param language $language Language
*/
public function __construct(user $user, language $language)
{
$this->language = $language;
parent::__construct($user);
}
/**
* Sets the command name and description
*
@@ -28,7 +47,7 @@ class recreate extends \phpbb\console\command\command
{
$this
->setName('thumbnail:recreate')
->setDescription($this->user->lang('CLI_DESCRIPTION_THUMBNAIL_RECREATE'))
->setDescription($this->language->lang('CLI_DESCRIPTION_THUMBNAIL_RECREATE'))
;
}