protected function SiteAuditReportAbstract::getReportName in Site Audit 8.2
Same name and namespace in other branches
- 7 Report/Abstract.php \SiteAuditReportAbstract::getReportName()
Get the complete name of the report.
Return value
string The report name.
2 calls to SiteAuditReportAbstract::getReportName()
- SiteAuditReportAbstract::getCheckNames in Report/
Abstract.php - Get the names of all the checks within the report.
- SiteAuditReportAbstract::__construct in Report/
Abstract.php - Constructor; loads and executes checks based on the name of this report.
File
- Report/
Abstract.php, line 59 - Contains \SiteAudit\Report\Abstract.
Class
- SiteAuditReportAbstract
- Class SiteAuditReportAbstract.
Code
protected function getReportName() {
return substr(get_class($this), strlen('SiteAuditReport'));
}