From a5796fe088320b9b3dd79a0349b3cc4d374753c3 Mon Sep 17 00:00:00 2001 From: Greg Anderson Date: Mon, 10 Jun 2013 22:08:39 -0700 Subject: Greg Anderson: Generated with Drush iq --- commands/core/core.drush.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/commands/core/core.drush.inc b/commands/core/core.drush.inc index ded2af2..87fa22e 100644 --- a/commands/core/core.drush.inc +++ b/commands/core/core.drush.inc @@ -114,7 +114,7 @@ function core_drush_command() { 'outputformat' => array( 'default' => 'key-value', 'pipe-format' => 'ini', - 'field-labels' => array('drupal-version' => 'Drupal version', 'uri' => 'Site URI', 'db-driver' => 'Database driver', 'db-host' => 'Database hostname', 'db-username' => 'Database username', 'db-password' => 'Database password', 'db-name' => 'Database name', 'db-status' => 'Database', 'bootstrap' => 'Drupal bootstrap', 'user' => 'Drupal user', 'theme' => 'Default theme', 'admin-theme' => 'Administration theme', 'php-bin' => 'PHP executable', 'php-conf' => 'PHP configuration', 'drush-version' => 'Drush version', 'drush-conf' => 'Drush configuration', 'drush-alias-files' => 'Drush alias files', 'root' => 'Drupal root', 'site-path' => 'Site path', 'root' => 'Drupal root', 'site' => 'Site path', 'themes' => 'Themes path', 'modules' => 'Modules path', 'files' => 'File directory path', 'private' => 'Private file directory path', 'temp' => 'Temporary file directory path', 'config-active' => 'Active config directory path', 'config-staging' => 'Staging config directory path', 'files-path' => 'File directory path', 'temp-path' => 'Temporary file directory path', '%paths' => 'Other paths'), + 'field-labels' => array('drupal-version' => 'Drupal version', 'uri' => 'Site URI', 'db-driver' => 'Database driver', 'db-host' => 'Database hostname', 'db-username' => 'Database username', 'db-password' => 'Database password', 'db-name' => 'Database name', 'db-status' => 'Database', 'bootstrap' => 'Drupal bootstrap', 'user' => 'Drupal user', 'theme' => 'Default theme', 'admin-theme' => 'Administration theme', 'php-bin' => 'PHP executable', 'php-conf' => 'PHP configuration', 'php-os' => 'PHP OS', 'drush-version' => 'Drush version', 'drush-conf' => 'Drush configuration', 'drush-alias-files' => 'Drush alias files', 'root' => 'Drupal root', 'site-path' => 'Site path', 'root' => 'Drupal root', 'site' => 'Site path', 'themes' => 'Themes path', 'modules' => 'Modules path', 'files' => 'File directory path', 'private' => 'Private file directory path', 'temp' => 'Temporary file directory path', 'config-active' => 'Active config directory path', 'config-staging' => 'Staging config directory path', 'files-path' => 'File directory path', 'temp-path' => 'Temporary file directory path', '%paths' => 'Other paths'), 'formatted-filter' => '_drush_core_status_format_table_data', 'private-fields' => 'db-password', 'simplify-single' => TRUE, @@ -599,6 +599,7 @@ function _core_site_status_table($project = '') { if ($php_bin = drush_get_option('php')) { $status_table['php-bin'] = $php_bin; } + $status_table['php-os'] = PHP_OS; if ($php_ini_files = _drush_core_config_php_ini_files()) { $status_table['php-conf'] = $php_ini_files; } -- 1.7.9.5