8 $title =
"Logged $count messages";
9 if ($errorCount)
$title .=
" $errorCount errors";
10 if ($warningCount)
$title .=
" $warningCount warnings";
11 if ($infoCount)
$title .=
" $infoCount info";
13 <div
class=
"yii2-debug-toolbar-block">
14 <a href=
"<?php echo $this->getUrl(); ?>" title=
"<?php echo $title; ?>">
15 Log <span
class=
"label"><?php echo
$count; ?></span>
17 <?php
if ($errorCount): ?>
18 <a href=
"<?php echo $this->getUrl(); ?>#first-error" title=
"<?php echo $title; ?>">
19 <span
class=
"label label-important"><?php echo $errorCount; ?></span>
22 <?php
if ($warningCount): ?>
23 <a href=
"<?php echo $this->getUrl(); ?>#first-warning" title=
"<?php echo $title; ?>">
24 <span
class=
"label label-warning"><?php echo $warningCount; ?></span>
27 <?php
if ($infoCount): ?>
28 <a href=
"<?php echo $this->getUrl(); ?>#first-info" title=
"<?php echo $title; ?>">
29 <span
class=
"label label-info"><?php echo $infoCount; ?></span>