Mercurial > hg > cmmr2012-drupal-site
view vendor/chi-teck/drupal-code-generator/src/Helper/OutputHandler.php @ 0:c75dbcec494b
Initial commit from drush-created site
author | Chris Cannam |
---|---|
date | Thu, 05 Jul 2018 14:24:15 +0000 |
parents | |
children |
line wrap: on
line source
<?php namespace DrupalCodeGenerator\Helper; use Symfony\Component\Console\Helper\Helper; use Symfony\Component\Console\Output\OutputInterface; /** * Output printer for generators. */ class OutputHandler extends Helper { /** * {@inheritdoc} */ public function getName() { return 'dcg_output_handler'; } /** * Prints summary. * * @param \Symfony\Component\Console\Output\OutputInterface $output * Output instance. * @param array $dumped_files * List of created or updated files. */ public function printSummary(OutputInterface $output, array $dumped_files) { if (count($dumped_files) > 0) { // Multiple hooks can be dumped to the same file. $dumped_files = array_unique($dumped_files); usort($dumped_files, function ($a, $b) { $depth_a = substr_count($a, '/'); $depth_b = substr_count($b, '/'); // Top level files should be printed first. return $depth_a == $depth_b || ($depth_a > 1 && $depth_b > 1) ? strcmp($a, $b) : ($depth_a > $depth_b ? 1 : -1); }); $output->writeln(''); $output->writeln(' The following directories and files have been created or updated:'); $output->writeln('<fg=cyan;options=bold>–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––</>'); foreach ($dumped_files as $file) { $output->writeln(" • $file"); } $output->writeln(''); } } }