index.php 392 Bytes
Newer Older
Qiang Xue committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<?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(); ?>