private function SecurityReviewController::securityReviewRun in Acquia Connector 8.2
Same name and namespace in other branches
- 8 src/Controller/SecurityReviewController.php \Drupal\acquia_connector\Controller\SecurityReviewController::securityReviewRun()
- 3.x src/Controller/SecurityReviewController.php \Drupal\acquia_connector\Controller\SecurityReviewController::securityReviewRun()
Function for running Security Review checklist and returning results.
Parameters
array|null $checklist: Array of checks to run, indexed by module namespace.
bool $log: Whether to log check processing using security_review_log.
bool $help: Whether to load the help file and include in results.
Return value
array Results from running checklist, indexed by module namespace.
1 call to SecurityReviewController::securityReviewRun()
- SecurityReviewController::runSecurityReview in src/
Controller/ SecurityReviewController.php - Run some checks from the Security Review module.
File
- src/
Controller/ SecurityReviewController.php, line 80
Class
- SecurityReviewController
- Acquia Security Review page.
Namespace
Drupal\acquia_connector\ControllerCode
private function securityReviewRun(array $checklist = NULL, $log = FALSE, $help = FALSE) {
return $this
->getSecurityReviewResults($checklist, $log);
}