You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
784 B
28 lines
784 B
<?php |
|
use yii\log\Target; |
|
use yii\log\Logger; |
|
?> |
|
|
|
<?php |
|
$title = 'Logged ' . count($data['messages']) . ' messages'; |
|
$errorCount = count(Target::filterMessages($data['messages'], Logger::LEVEL_ERROR)); |
|
$warningCount = count(Target::filterMessages($data['messages'], Logger::LEVEL_WARNING)); |
|
$output = []; |
|
|
|
if ($errorCount) { |
|
$output[] = "<span class=\"label label-important\">$errorCount</span>"; |
|
$title .= ", $errorCount errors"; |
|
} |
|
|
|
if ($warningCount) { |
|
$output[] = "<span class=\"label label-warning\">$warningCount</span>"; |
|
$title .= ", $warningCount warnings"; |
|
} |
|
?> |
|
|
|
<div class="yii-debug-toolbar-block"> |
|
<a href="<?= $panel->getUrl() ?>" title="<?= $title ?>">Log |
|
<span class="label"><?= count($data['messages']) ?></span> |
|
<?= implode(' ', $output) ?> |
|
</a> |
|
</div>
|
|
|