Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / drush / drush / lib / Drush / CommandFiles / core / DrupliconCommands.php
diff --git a/vendor/drush/drush/lib/Drush/CommandFiles/core/DrupliconCommands.php b/vendor/drush/drush/lib/Drush/CommandFiles/core/DrupliconCommands.php
deleted file mode 100644 (file)
index 4e58fff..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-<?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);
-    }
-  }
-}