You are here

public function DatabaseEngine::getAction in Site Audit 8.3

.

Overrides SiteAuditCheckBase::getAction

File

src/Plugin/SiteAuditCheck/DatabaseEngine.php, line 75

Class

DatabaseEngine
Provides the CronLast Check.

Namespace

Drupal\site_audit\Plugin\SiteAuditCheck

Code

public function getAction() {
  if ($this->score != SiteAuditCheckBase::AUDIT_CHECK_SCORE_PASS) {
    return $this
      ->t('Change the Storage Engine to InnoDB. See @url for details.', [
      '@url' => 'http://dev.mysql.com/doc/refman/5.6/en/converting-tables-to-innodb.html',
    ]);
  }
}