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.
16 lines
392 B
16 lines
392 B
<?php |
|
|
|
use yii\helpers\Html; |
|
|
|
/** |
|
* @var \yii\base\View $this |
|
* @var string $tag |
|
* @var \yii\debug\Panel[] $panels |
|
* @var \yii\debug\Panel $activePanel |
|
*/ |
|
?> |
|
<?php foreach ($panels as $panel): ?> |
|
<?php echo Html::a(Html::encode($panel->getName()), array('debug/default/index', 'tag' => $tag, 'panel' => $panel->id)); ?><br> |
|
<?php endforeach; ?> |
|
|
|
<?php echo $activePanel->getDetail(); ?>
|
|
|