404.php in Site Audit 7
Same filename and directory in other branches
Contains \SiteAudit\Check\Watchdog\404.
File
Check/Watchdog/404.phpView source
<?php
/**
* @file
* Contains \SiteAudit\Check\Watchdog\404.
*/
/**
* Class SiteAuditCheckWatchdog404.
*/
class SiteAuditCheckWatchdog404 extends SiteAuditCheckAbstract {
/**
* Implements \SiteAudit\Check\Abstract\getLabel().
*/
public function getLabel() {
return dt('Number of 404 entries');
}
/**
* Implements \SiteAudit\Check\Abstract\getDescription().
*/
public function getDescription() {
return dt('Count the number of page not found entries.');
}
/**
* Implements \SiteAudit\Check\Abstract\getResultFail().
*/
public function getResultFail() {
}
/**
* Implements \SiteAudit\Check\Abstract\getResultInfo().
*/
public function getResultInfo() {
return dt('@count_404 pages not found (@percent_404%).', array(
'@count_404' => $this->registry['count_404'],
'@percent_404' => $this->registry['percent_404'],
));
}
/**
* Implements \SiteAudit\Check\Abstract\getResultPass().
*/
public function getResultPass() {
return dt('No 404 entries.');
}
/**
* Implements \SiteAudit\Check\Abstract\getResultWarn().
*/
public function getResultWarn() {
return $this
->getResultInfo();
}
/**
* Implements \SiteAudit\Check\Abstract\getAction().
*/
public function getAction() {
if ($this->score == SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_WARN) {
return dt('Review the full report at admin/reports/page-not-found. If self-inflicted, fix the source. If a redirect is appropriate, visit admin/config/search/path and add URL aliases.');
}
}
/**
* Implements \SiteAudit\Check\Abstract\calculateScore().
*/
public function calculateScore() {
$sql_query = 'SELECT COUNT(wid) ';
$sql_query .= 'FROM {watchdog} ';
$sql_query .= 'WHERE type=:type';
$this->registry['count_404'] = db_query($sql_query, array(
':type' => 'page not found',
))
->fetchField();
$this->registry['percent_404'] = 0;
// @TODO: Aggregate 404 entries and return top 10.
if (!$this->registry['count_404']) {
return SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_PASS;
}
$this->registry['percent_404'] = round($this->registry['count_404'] / $this->registry['count_entries'] * 100);
if ($this->registry['percent_404'] >= 10) {
return SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_WARN;
}
return SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_INFO;
}
}
Classes
Name | Description |
---|---|
SiteAuditCheckWatchdog404 | Class SiteAuditCheckWatchdog404. |