Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / drush / drush / commands / xh.drush.inc
diff --git a/vendor/drush/drush/commands/xh.drush.inc b/vendor/drush/drush/commands/xh.drush.inc
deleted file mode 100644 (file)
index 7a3cfef..0000000
+++ /dev/null
@@ -1,103 +0,0 @@
-<?php
-
-/**
- * @file
- */
-
-use Drush\Log\LogLevel;
-
-define('XH_PROFILE_MEMORY', FALSE);
-
-define('XH_PROFILE_CPU', FALSE);
-
-define('XH_PROFILE_BUILTINS', TRUE);
-
-/**
- * Implements hook_drush_help_alter().
- */
-function xh_drush_help_alter(&$command) {
-  if ($command['command'] == 'global-options') {
-    // Do not include these in options in standard help.
-    if ($command['#brief'] === FALSE) {
-      $command['options']['xh'] = array(
-        'description' => 'Enable profiling via XHProf',
-      );
-      $command['sub-options']['xh']['xh-link'] = 'URL to your XHProf report site.';
-      $command['sub-options']['xh']['xh-path'] = 'Absolute path to the xhprof project.';
-      $command['sub-options']['xh']['xh-profile-builtins'] = 'Profile built-in PHP functions (defaults to TRUE).';
-      $command['sub-options']['xh']['xh-profile-cpu'] = 'Profile CPU (defaults to FALSE).';
-      $command['sub-options']['xh']['xh-profile-memory'] = 'Profile Memory (defaults to FALSE).';
-    }
-  }
-}
-
-function xh_enabled() {
-  if (drush_get_option('xh')) {
-    if (!extension_loaded('xhprof')) {
-      return drush_set_error('You must enable the xhprof PHP extension in your CLI PHP in order to profile.');
-    }
-    if (!drush_get_option('xh-path', '')) {
-      return drush_set_error('You must provide the xh-path option in your drushrc or on the CLI in order to profile.');
-    }
-    return TRUE;
-  }
-}
-
-/**
- * Determines flags for xhprof_enable based on drush options.
- */
-function xh_flags() {
-  $flags = 0;
-  if (!drush_get_option('xh-profile-builtins', XH_PROFILE_BUILTINS)) {
-    $flags |= XHPROF_FLAGS_NO_BUILTINS;
-  }
-  if (drush_get_option('xh-profile-cpu', XH_PROFILE_CPU)) {
-    $flags |= XHPROF_FLAGS_CPU;
-  }
-  if (drush_get_option('xh-profile-memory', XH_PROFILE_MEMORY)) {
-    $flags |= XHPROF_FLAGS_MEMORY;
-  }
-  return $flags;
-}
-
-/**
- * Implements hook_drush_init().
- */
-function xh_drush_init() {
-  if (xh_enabled()) {
-    if ($path = drush_get_option('xh-path', '')) {
-      include_once $path . '/xhprof_lib/utils/xhprof_lib.php';
-      include_once $path . '/xhprof_lib/utils/xhprof_runs.php';
-      xhprof_enable(xh_flags());
-    }
-  }
-}
-
-/**
- * Implements hook_drush_exit().
- */
-function xh_drush_exit() {
-  if (xh_enabled()) {
-    $args = func_get_args();
-    $namespace = 'Drush'; // variable_get('site_name', '');
-    $xhprof_data = xhprof_disable();
-    $xhprof_runs = new XHProfRuns_Default();
-    $run_id =  $xhprof_runs->save_run($xhprof_data, $namespace);
-    if ($url = xh_link($run_id)) {
-      drush_log(dt('XHProf run saved. View report at !url', array('!url' => $url)), LogLevel::OK);
-    }
-  }
-}
-
-/**
- * Returns the XHProf link.
- */
-function xh_link($run_id) {
-  if ($xhprof_url = trim(drush_get_option('xh-link'))) {
-    $namespace = 'Drush'; //variable_get('site_name', '');
-    return $xhprof_url . '/index.php?run=' . urlencode($run_id) . '&source=' . urlencode($namespace);
-  }
-  else {
-    drush_log('Configure xh_link in order to see a link to the XHProf report for this request instead of this message.');
-  }
-}