* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Sonata\AdminBundle\Command; use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; /** * @author Thomas Rabaix */ class ListAdminCommand extends ContainerAwareCommand { /** * {@inheritdoc} */ public function configure() { $this->setName('sonata:admin:list'); $this->setDescription('List all admin services available'); } /** * {@inheritdoc} */ public function execute(InputInterface $input, OutputInterface $output) { $pool = $this->getContainer()->get('sonata.admin.pool'); $output->writeln('Admin services:'); foreach ($pool->getAdminServiceIds() as $id) { $instance = $this->getContainer()->get($id); $output->writeln(sprintf(' %-40s %-60s', $id, $instance->getClass() )); } } }