You are here

function drush_prod_monitor_statusdetail in Production check & Production monitor 6

Same name and namespace in other branches
  1. 7 prod_monitor/prod_monitor.drush.inc \drush_prod_monitor_statusdetail()

Status page callback

1 string reference to 'drush_prod_monitor_statusdetail'
prod_monitor_drush_command in prod_monitor/prod_monitor.drush.inc
Implementation of hook_drush_command().

File

prod_monitor/prod_monitor.drush.inc, line 151

Code

function drush_prod_monitor_statusdetail() {
  $args = func_get_args();
  if (empty($args)) {
    _drush_prod_monitor_overview();
  }
  elseif (is_numeric($args[0])) {
    _drush_prod_monitor_detail($args[0]);
  }
}