Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / drush / drush / commands / core / outputformat / html.inc
diff --git a/vendor/drush/drush/commands/core/outputformat/html.inc b/vendor/drush/drush/commands/core/outputformat/html.inc
deleted file mode 100644 (file)
index 215f27c..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-
-/**
-* Output formatter 'html'
-*
-* @param $data
-*
-* @param $metadata
-*   '' -
-*   '' -
-*/
-class drush_outputformat_html extends drush_outputformat {
-  function format($input, $metadata) {
-    $input = drush_help_visible($input);
-    $global_options_command = drush_global_options_command(TRUE);
-    $global_options_rows = drush_format_help_section($global_options_command, 'options');
-    ob_start();
-    require_once __DIR__ . '/html.tpl.php';
-    $return = ob_get_clean();
-    return $return;
-  }
-}
-