public function SiteAuditCheckWatchdog404::getResultInfo in Site Audit 8.2
Same name and namespace in other branches
- 7 Check/Watchdog/404.php \SiteAuditCheckWatchdog404::getResultInfo()
Implements \SiteAudit\Check\Abstract\getResultInfo().
Overrides SiteAuditCheckAbstract::getResultInfo
1 call to SiteAuditCheckWatchdog404::getResultInfo()
- SiteAuditCheckWatchdog404::getResultWarn in Check/
Watchdog/ 404.php - Implements \SiteAudit\Check\Abstract\getResultWarn().
File
- Check/
Watchdog/ 404.php, line 34 - Contains \SiteAudit\Check\Watchdog\404.
Class
- SiteAuditCheckWatchdog404
- Class SiteAuditCheckWatchdog404.
Code
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'],
));
}