Вход Регистрация
Файл: phpbb/console/command/cron/cron_list.php
Строк: 127
<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/
namespace phpbbconsolecommandcron;

use 
SymfonyComponentConsoleInputInputInterface;
use 
SymfonyComponentConsoleOutputOutputInterface;

class 
cron_list extends phpbbconsolecommandcommand
{
    
/** @var phpbbcronmanager */
    
protected $cron_manager;

    
/**
    * Constructor
    *
    * @param phpbbuser            $user            User instance
    * @param phpbbcronmanager    $cron_manager    Cron manager
    */
    
public function __construct(phpbbuser $userphpbbcronmanager $cron_manager)
    {
        
$this->cron_manager $cron_manager;
        
parent::__construct($user);
    }

    
/**
    * {@inheritdoc}
    */
    
protected function configure()
    {
        
$this
            
->setName('cron:list')
            ->
setDescription($this->user->lang('CLI_DESCRIPTION_CRON_LIST'))
        ;
    }

    
/**
    * Executes the command cron:list.
    *
    * Prints a list of ready and unready cron jobs.
    *
    * @param InputInterface  $input  An InputInterface instance
    * @param OutputInterface $output An OutputInterface instance
    *
    * @return null
    */
    
protected function execute(InputInterface $inputOutputInterface $output)
    {
        
$tasks $this->cron_manager->get_tasks();

        if (empty(
$tasks))
        {
            
$output->writeln($this->user->lang('CRON_NO_TASKS'));
            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>');
            
$this->print_tasks_names($ready_tasks$output);
        }

        if (!empty(
$ready_tasks) && !empty($not_ready_tasks))
        {
            
$output->writeln('');
        }

        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 $tasksOutputInterface $output)
    {
        foreach (
$tasks as $task)
        {
            
$output->writeln($task->get_name());
        }
    }
}
Онлайн: 2
Реклама