|
@@ 151-158 (lines=8) @@
|
| 148 |
|
|
| 149 |
|
break; |
| 150 |
|
|
| 151 |
|
case 'cms_php_version': |
| 152 |
|
if ((isset($item['cms_version']) && $item['cms_version'] !== null) && (isset($item['php_version']) && $item['php_version'] !== null)) |
| 153 |
|
{ |
| 154 |
|
$index = $item['cms_version'] . ' - ' . $item['php_version']; |
| 155 |
|
$cms_php_version[$index] = $item['count']; |
| 156 |
|
|
| 157 |
|
$this->totalItems += $item['count']; |
| 158 |
|
} |
| 159 |
|
|
| 160 |
|
break; |
| 161 |
|
|
|
@@ 162-169 (lines=8) @@
|
| 159 |
|
|
| 160 |
|
break; |
| 161 |
|
|
| 162 |
|
case 'db_type_version': |
| 163 |
|
if ((isset($item['db_type']) && $item['db_type'] !== null) && (isset($item['db_version']) && $item['db_version'] !== null)) |
| 164 |
|
{ |
| 165 |
|
$index = $item['db_type'] . ' - ' . $item['db_version']; |
| 166 |
|
$db_type_version[$index] = $item['count']; |
| 167 |
|
|
| 168 |
|
$this->totalItems += $item['count']; |
| 169 |
|
} |
| 170 |
|
|
| 171 |
|
break; |
| 172 |
|
|