aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
diff options
context:
space:
mode:
authorEtienne Baroux <barouxe@phelma.grenoble-inp.fr>2014-06-02 12:17:37 +0200
committerEtienne Baroux <barouxe@phelma.grenoble-inp.fr>2014-06-02 12:17:37 +0200
commit58d7302b495783edd6e0826c100ffa93acb0693d (patch)
tree0bf3968c3f4d636e34ea7aa7847af10f0d44f20b /phpBB/phpbb
parent48679eeff884ce564f7a5ceb7db1b6c64e5dcb67 (diff)
downloadforums-58d7302b495783edd6e0826c100ffa93acb0693d.tar
forums-58d7302b495783edd6e0826c100ffa93acb0693d.tar.gz
forums-58d7302b495783edd6e0826c100ffa93acb0693d.tar.bz2
forums-58d7302b495783edd6e0826c100ffa93acb0693d.tar.xz
forums-58d7302b495783edd6e0826c100ffa93acb0693d.zip
[ticket/12602] Add files to print the cron list and test files.
PHPBB3-12602
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r--phpBB/phpbb/console/command/cron/cron_list.php80
1 files changed, 80 insertions, 0 deletions
diff --git a/phpBB/phpbb/console/command/cron/cron_list.php b/phpBB/phpbb/console/command/cron/cron_list.php
new file mode 100644
index 0000000000..0018d9542d
--- /dev/null
+++ b/phpBB/phpbb/console/command/cron/cron_list.php
@@ -0,0 +1,80 @@
+<?php
+/**
+*
+* @package phpBB3
+* @copyright (c) 2014 phpBB Group
+* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
+*
+*/
+namespace phpbb\console\command\cron;
+
+use Symfony\Component\Console\Input\InputInterface;
+use Symfony\Component\Console\Output\OutputInterface;
+
+class cron_list extends \phpbb\console\command\command
+{
+ /** @var \phpbb\cron\manager */
+ protected $cron_manager;
+
+ /** @var \phpbb\user */
+ protected $user;
+
+ public function __construct(\phpbb\cron\manager $cron_manager, \phpbb\user $user)
+ {
+ $this->cron_manager = $cron_manager;
+ $this->user = $user;
+ parent::__construct();
+ }
+
+ protected function configure()
+ {
+ $this
+ ->setName('cron:list')
+ ->setDescription($this->user->lang('CLI_DESCR_CRON_LIST'))
+ ;
+ }
+
+ protected function execute(InputInterface $input, OutputInterface $output)
+ {
+ $tasks = $this->cron_manager->get_tasks();
+
+ if (empty($tasks))
+ {
+ $output->writeln($this->user->lang('NO_TASK'));
+ return;
+ }
+
+ $ready_tasks = array();
+ $not_ready_tasks = array();
+ foreach ($tasks as $task)
+ {
+ if ($task->is_ready())
+ {
+ $ready_tasks[] = $task;
+ }
+ else
+ {
+ $not_ready_tasks[] = $task;
+ }
+ }
+
+ if (!empty($ready_tasks))
+ {
+ $output->writeln('<info>' . $this->user->lang('TASKS_READY') . '</info>');
+ foreach ($ready_tasks as $task)
+ {
+ $output->writeln($task->get_name());
+ }
+ $output->writeln('');
+ }
+
+ if (!empty($not_ready_tasks))
+ {
+ $output->writeln('<info>' . $this->user->lang('TASKS_NOT_READY') . '</info>');
+ foreach ($not_ready_tasks as $task)
+ {
+ $output->writeln($task->get_name());
+ }
+ }
+ }
+}