Enabled.php in Site Audit 7
Same filename in this branch
Contains \SiteAudit\Check\Block\Enabled.
File
Check/Block/Enabled.phpView source
<?php
/**
* @file
* Contains \SiteAudit\Check\Block\Enabled.
*/
/**
* Class SiteAuditCheckBlockEnabled.
*/
class SiteAuditCheckBlockEnabled extends SiteAuditCheckAbstract {
/**
* Implements \SiteAudit\Check\Abstract\getLabel().
*/
public function getLabel() {
return dt('Block status');
}
/**
* Implements \SiteAudit\Check\Abstract\getDescription().
*/
public function getDescription() {
return dt('Check to see if enabled');
}
/**
* Implements \SiteAudit\Check\Abstract\getResultFail().
*/
public function getResultFail() {
}
/**
* Implements \SiteAudit\Check\Abstract\getResultInfo().
*/
public function getResultInfo() {
return dt('Block is not enabled.');
}
/**
* Implements \SiteAudit\Check\Abstract\getResultPass().
*/
public function getResultPass() {
return dt('Block is enabled.');
}
/**
* Implements \SiteAudit\Check\Abstract\getResultWarn().
*/
public function getResultWarn() {
return dt("Block is enabled, but there is no default theme. Consider disabling block if you don't need it.");
}
/**
* Implements \SiteAudit\Check\Abstract\getAction().
*/
public function getAction() {
}
/**
* Implements \SiteAudit\Check\Abstract\calculateScore().
*/
public function calculateScore() {
if (!module_exists('block')) {
$this->abort = TRUE;
return SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_INFO;
}
$this->registry['theme_default'] = variable_get('theme_default');
if (!$this->registry['theme_default']) {
return SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_WARN;
}
return SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_PASS;
}
}
Classes
Name | Description |
---|---|
SiteAuditCheckBlockEnabled | Class SiteAuditCheckBlockEnabled. |