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

[ticket/12602] Add files to print the cron list and test files.

PHPBB3-12602
This commit is contained in:
Etienne Baroux
2014-06-02 12:17:37 +02:00
parent 48679eeff8
commit 58d7302b49
8 changed files with 251 additions and 0 deletions

View File

@@ -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());
}
}
}
}