1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-07 17:27:16 +02:00

[ticket/14895] Use SymfonyStyle in all CLI

PHPBB3-14895
This commit is contained in:
Matt Friedman
2016-12-08 14:24:02 -08:00
parent d275fefc69
commit b17fa7dfa5
15 changed files with 100 additions and 83 deletions

View File

@@ -14,6 +14,7 @@ namespace phpbb\console\command\cron;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Style\SymfonyStyle;
class cron_list extends \phpbb\console\command\command
{
@@ -55,57 +56,39 @@ class cron_list extends \phpbb\console\command\command
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
$io = new SymfonyStyle($input, $output);
$tasks = $this->cron_manager->get_tasks();
if (empty($tasks))
{
$output->writeln($this->user->lang('CRON_NO_TASKS'));
$io->error($this->user->lang('CRON_NO_TASKS'));
return;
}
$ready_tasks = array();
$not_ready_tasks = array();
$ready_tasks = $not_ready_tasks = array();
foreach ($tasks as $task)
{
if ($task->is_ready())
{
$ready_tasks[] = $task;
$ready_tasks[] = $task->get_name();
}
else
{
$not_ready_tasks[] = $task;
$not_ready_tasks[] = $task->get_name();
}
}
if (!empty($ready_tasks))
{
$output->writeln('<info>' . $this->user->lang('TASKS_READY') . '</info>');
$this->print_tasks_names($ready_tasks, $output);
}
if (!empty($ready_tasks) && !empty($not_ready_tasks))
{
$output->writeln('');
$io->section($this->user->lang('TASKS_READY'));
$io->listing($ready_tasks);
}
if (!empty($not_ready_tasks))
{
$output->writeln('<info>' . $this->user->lang('TASKS_NOT_READY') . '</info>');
$this->print_tasks_names($not_ready_tasks, $output);
}
}
/**
* Print a list of cron jobs
*
* @param array $tasks A list of task to display
* @param OutputInterface $output An OutputInterface instance
*/
protected function print_tasks_names(array $tasks, OutputInterface $output)
{
foreach ($tasks as $task)
{
$output->writeln($task->get_name());
$io->section($this->user->lang('TASKS_NOT_READY'));
$io->listing($not_ready_tasks);
}
}
}