You are here

public function ViewsCacheOutput::getResultWarn in Site Audit 8.3

.

Overrides SiteAuditCheckBase::getResultWarn

1 call to ViewsCacheOutput::getResultWarn()
ViewsCacheOutput::getResultInfo in src/Plugin/SiteAuditCheck/ViewsCacheOutput.php
.

File

src/Plugin/SiteAuditCheck/ViewsCacheOutput.php, line 43

Class

ViewsCacheOutput
Provides the ViewsCacheOutput Check.

Namespace

Drupal\site_audit\Plugin\SiteAuditCheck

Code

public function getResultWarn() {
  return $this
    ->t('The following Views are not caching rendered output: @views_without_output_caching', [
    '@views_without_output_caching' => implode(', ', $this->registry->views_without_output_caching),
  ]);
}