You are here

public function BestPracticesSettings::getAction in Site Audit 8.3

.

Overrides SiteAuditCheckBase::getAction

File

src/Plugin/SiteAuditCheck/BestPracticesSettings.php, line 46

Class

BestPracticesSettings
Provides the BestPracticesSettings Check.

Namespace

Drupal\site_audit\Plugin\SiteAuditCheck

Code

public function getAction() {
  if ($this->score == SiteAuditCheckBase::AUDIT_CHECK_SCORE_WARN) {
    return $this
      ->t('Don\'t rely on symbolic links for core configuration files; copy settings.php where it should be and remove the symbolic link.');
  }
  if ($this->score == SiteAuditCheckBase::AUDIT_CHECK_SCORE_FAIL) {
    return $this
      ->t('Even if environment settings are injected, create a stub settings.php file for compatibility.');
  }
}