diff options
author | Matt Friedman <maf675@gmail.com> | 2016-12-08 14:24:02 -0800 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2016-12-08 14:24:02 -0800 |
commit | b17fa7dfa588fc191f4ed268b88dcaec40294acb (patch) | |
tree | f24fb0cca88d44e8c3c3afbfbced97e07061b6d3 /phpBB/phpbb/console/command/cron | |
parent | d275fefc69bae24f547802d824607c9a054ff6d2 (diff) | |
download | forums-b17fa7dfa588fc191f4ed268b88dcaec40294acb.tar forums-b17fa7dfa588fc191f4ed268b88dcaec40294acb.tar.gz forums-b17fa7dfa588fc191f4ed268b88dcaec40294acb.tar.bz2 forums-b17fa7dfa588fc191f4ed268b88dcaec40294acb.tar.xz forums-b17fa7dfa588fc191f4ed268b88dcaec40294acb.zip |
[ticket/14895] Use SymfonyStyle in all CLI
PHPBB3-14895
Diffstat (limited to 'phpBB/phpbb/console/command/cron')
-rw-r--r-- | phpBB/phpbb/console/command/cron/cron_list.php | 39 |
1 files changed, 11 insertions, 28 deletions
diff --git a/phpBB/phpbb/console/command/cron/cron_list.php b/phpBB/phpbb/console/command/cron/cron_list.php index c515fd9e80..0618cee4db 100644 --- a/phpBB/phpbb/console/command/cron/cron_list.php +++ b/phpBB/phpbb/console/command/cron/cron_list.php @@ -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); } } } |