PhpFilter.php in Site Audit 7
Contains \SiteAudit\Check\BestPractices\PhpFilter.
File
Check/BestPractices/PhpFilter.phpView source
<?php
/**
* @file
* Contains \SiteAudit\Check\BestPractices\PhpFilter.
*/
/**
* Class SiteAuditCheckBestPracticesPhpFilter.
*/
class SiteAuditCheckBestPracticesPhpFilter extends SiteAuditCheckAbstract {
/**
* Implements \SiteAudit\Check\Abstract\getLabel().
*/
public function getLabel() {
return dt('PHP Filter');
}
/**
* Implements \SiteAudit\Check\Abstract\getDescription().
*/
public function getDescription() {
return dt('Check if enabled.');
}
/**
* Implements \SiteAudit\Check\Abstract\getResultFail().
*/
public function getResultFail() {
if (drush_get_option('detail')) {
return dt('PHP Filter is enabled! Executable code should never be stored in the database, and support for this feature was removed in Drupal 8 - https://drupal.org/node/1203886');
}
else {
return dt('PHP Filter is enabled!');
}
}
/**
* Implements \SiteAudit\Check\Abstract\getResultInfo().
*/
public function getResultInfo() {
}
/**
* Implements \SiteAudit\Check\Abstract\getResultPass().
*/
public function getResultPass() {
return dt('PHP Filter is not enabled.');
}
/**
* Implements \SiteAudit\Check\Abstract\getResultWarn().
*/
public function getResultWarn() {
}
/**
* Implements \SiteAudit\Check\Abstract\getAction().
*/
public function getAction() {
if ($this->score == SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_FAIL) {
return dt('Remove all executable code from your content and move it to your codebase.');
}
}
/**
* Implements \SiteAudit\Check\Abstract\calculateScore().
*/
public function calculateScore() {
if (module_exists('php')) {
return SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_FAIL;
}
return SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_PASS;
}
}
Classes
Name | Description |
---|---|
SiteAuditCheckBestPracticesPhpFilter | Class SiteAuditCheckBestPracticesPhpFilter. |