view vendor/drush/drush/lib/Drush/CommandFiles/core/DrupliconCommands.php @ 9:1fc0ff908d1f

Add another data file
author Chris Cannam
date Mon, 05 Feb 2018 12:34:32 +0000
parents 4c8ae668cc8c
children
line wrap: on
line source
<?php
namespace Drush\CommandFiles\core;

use Consolidation\AnnotatedCommand\CommandData;

class DrupliconCommands {
  protected $printed = false;

  /**
   * Print druplicon as post-command output.
   *
   * @hook post-command *
   * @option druplicon Shows the druplicon as glorious ASCII art.
   */
  public function druplicon($result, CommandData $commandData) {
    // If one command does a drush_invoke to another command,
    // then this hook will be called multiple times. Only print
    // once.  (n.b. If drush_invoke_process passes along the
    // --druplicon option, then we will still get mulitple output)
    if ($this->printed) {
      return;
    }
    $this->printed = true;
    $annotationData = $commandData->annotationData();
    $commandName = $annotationData['command'];
    // For some reason, Drush help uses drush_invoke_process to call helpsingle
    if ($commandName == 'helpsingle') {
      return;
    }
    drush_log(dt('Displaying Druplicon for "!command" command.', array('!command' => $commandName)));
    if ($commandData->input()->getOption('druplicon')) {
      $misc_dir = DRUSH_BASE_PATH . '/misc';
      if (drush_get_context('DRUSH_NOCOLOR')) {
        $content = file_get_contents($misc_dir . '/druplicon-no_color.txt');
      }
      else {
        $content = file_get_contents($misc_dir . '/druplicon-color.txt');
      }
      drush_print($content);
    }
  }
}