Analyzes a review and return the results.
\Drupal\views\ViewExecutable $view: The view to analyze.
array An array of analyze results organized into arrays keyed by 'ok', 'warning' and 'error'.
public function getMessages(ViewExecutable $view) { $view->initDisplay(); $messages = $this->moduleHandler ->invokeAll('views_analyze', [ $view, ]); return $messages; }