You are here

public function SiteAuditCommands::audit_all in Site Audit 8.3

Run All Site Audit reports.

@option format Format you which the report is to be in (html, text, json, markdown) @option detail Show details when no issues found for the check. @option bootstrap Wrap the report in HTML with Bootstrap derived styles. Forces --format=html @usage site_audit:audit-all Run all Site Audit reports

@command site_audit:all @aliases audit-all @aliases aa

@usage audit-all run all reports @usage audit-all --skip=block,status skip the block and status reports

File

src/Commands/SiteAuditCommands.php, line 165

Class

SiteAuditCommands
SiteAudit Drush commandfile.

Namespace

Drupal\site_audit\Commands

Code

public function audit_all($options = [
  'skip' => 'none',
  'format' => 'text',
  'detail' => FALSE,
  'bootstrap' => FALSE,
]) {
  return $this
    ->audit('all', $options);
}