Вход Регистрация
Файл: symfony-2.7/src/Symfony/Bundle/FrameworkBundle/Command/EventDispatcherDebugCommand.php
Строк: 157
<?php

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace SymfonyBundleFrameworkBundleCommand;

use 
SymfonyBundleFrameworkBundleConsoleHelperDescriptorHelper;
use 
SymfonyComponentConsoleInputInputArgument;
use 
SymfonyComponentConsoleInputInputOption;
use 
SymfonyComponentConsoleInputInputInterface;
use 
SymfonyComponentConsoleOutputOutputInterface;
use 
SymfonyComponentEventDispatcherEventDispatcherInterface;

/**
 * A console command for retrieving information about event dispatcher
 *
 * @author Matthieu Auger <mail@matthieuauger.com>
 */
class EventDispatcherDebugCommand extends ContainerAwareCommand
{
    
/**
     * {@inheritdoc}
     */
    
protected function configure()
    {
        
$this
            
->setName('debug:event-dispatcher')
            ->
setDefinition(array(
                new 
InputArgument('event'InputArgument::OPTIONAL'An event name (foo)'),
                new 
InputOption('format'nullInputOption::VALUE_REQUIRED'To output description in other formats''txt'),
                new 
InputOption('raw'nullInputOption::VALUE_NONE'To output raw description'),
            ))
            ->
setDescription('Displays configured listeners for an application')
            ->
setHelp(<<<EOF
The <info>%command.name%</info> command displays all configured listeners:

  <info>php %command.full_name%</info>

To get specific listeners for an event, specify its name:

  <info>php %command.full_name% kernel.request</info>
EOF
            )
        ;
    }

    
/**
     * {@inheritdoc}
     *
     * @throws LogicException
     */
    
protected function execute(InputInterface $inputOutputInterface $output)
    {
        if (
$event $input->getArgument('event')) {
            
$options = array('event' => $event);
        } else {
            
$options = array();
        }

        
$dispatcher $this->getEventDispatcher();

        
$helper = new DescriptorHelper();
        
$options['format'] = $input->getOption('format');
        
$options['raw_text'] = $input->getOption('raw');
        
$helper->describe($output$dispatcher$options);
    }

    
/**
     * Loads the Event Dispatcher from the container
     *
     * @return EventDispatcherInterface
     */
    
protected function getEventDispatcher()
    {
        return 
$this->getContainer()->get('event_dispatcher');
    }
}
Онлайн: 0
Реклама