Bins.php in Site Audit 7
Contains \SiteAudit\Check\Cache\Bins.
File
Check/Cache/Bins.phpView source
<?php
/**
* @file
* Contains \SiteAudit\Check\Cache\Bins.
*/
/**
* Class SiteAuditCheckCacheBins.
*/
class SiteAuditCheckCacheBins extends SiteAuditCheckAbstract {
/**
* Implements \SiteAudit\Check\Abstract\getLabel().
*/
public function getLabel() {
return dt('Cache bins');
}
/**
* Implements \SiteAudit\Check\Abstract\getDescription().
*/
public function getDescription() {
return dt('Detail explicitly defined cache bins.');
}
/**
* Implements \SiteAudit\Check\Abstract\getResultFail().
*/
public function getResultFail() {
}
/**
* Implements \SiteAudit\Check\Abstract\getResultInfo().
*/
public function getResultInfo() {
if (!empty($this->registry['cache_bins'])) {
if (drush_get_option('html')) {
$ret_val = '<table class="table table-condensed">';
$ret_val .= '<thead><tr><th>' . dt('Bin') . '</th><th>' . dt('Class') . '</th></tr></thead>';
$ret_val .= '<tbody>';
foreach ($this->registry['cache_bins'] as $bin => $class) {
$ret_val .= "<tr><td>{$bin}</td><td>{$class}</td></tr>";
}
$ret_val .= '</tbody>';
$ret_val .= '</table>';
}
else {
$ret_val = dt('Bin: Class') . PHP_EOL;
if (!drush_get_option('json')) {
$ret_val .= str_repeat(' ', 4);
}
$ret_val .= '----------';
foreach ($this->registry['cache_bins'] as $bin => $class) {
$ret_val .= PHP_EOL;
if (!drush_get_option('json')) {
$ret_val .= str_repeat(' ', 4);
}
$ret_val .= "{$bin}: {$class}";
}
}
return $ret_val;
}
else {
return dt('No cache bins defined.');
}
}
/**
* Implements \SiteAudit\Check\Abstract\getResultPass().
*/
public function getResultPass() {
}
/**
* Implements \SiteAudit\Check\Abstract\getResultWarn().
*/
public function getResultWarn() {
}
/**
* Implements \SiteAudit\Check\Abstract\getAction().
*/
public function getAction() {
}
/**
* Implements \SiteAudit\Check\Abstract\calculateScore().
*/
public function calculateScore() {
global $conf;
$this->registry['cache_bins'] = array();
$variables = preg_grep('/^cache_class_/', array_keys($conf));
if (!empty($variables)) {
foreach ($variables as $variable_name) {
$this->registry['cache_bins'][$variable_name] = $conf[$variable_name];
}
}
return SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_INFO;
}
}
Classes
Name | Description |
---|---|
SiteAuditCheckCacheBins | Class SiteAuditCheckCacheBins. |