Commit 646ed151 by Tobias Munk

readded phpinfo links and separator, now opens in a new tab

parent b3e6aedc
...@@ -7,6 +7,9 @@ use yii\helpers\Html; ...@@ -7,6 +7,9 @@ use yii\helpers\Html;
$extensions = $panel->getExtensions(); $extensions = $panel->getExtensions();
?> ?>
<h1>Configuration</h1> <h1>Configuration</h1>
<div><?= Html::a('Show phpinfo() »', ['phpinfo'], ['class' => 'btn btn-info', 'target' => 'phpinfo']) ?></div>
<?php <?php
echo $this->render('panels/config/table', [ echo $this->render('panels/config/table', [
'caption' => 'Application Configuration', 'caption' => 'Application Configuration',
...@@ -35,4 +38,3 @@ echo $this->render('panels/config/table', [ ...@@ -35,4 +38,3 @@ echo $this->render('panels/config/table', [
], ],
]); ]);
?> ?>
\ No newline at end of file
<div><?= Html::a('Show phpinfo() »', ['phpinfo'], ['class' => 'btn btn-primary']) ?></div>
...@@ -9,6 +9,9 @@ use yii\helpers\Html; ...@@ -9,6 +9,9 @@ use yii\helpers\Html;
<div class="yii-debug-toolbar-block"> <div class="yii-debug-toolbar-block">
<a href="<?= $panel->getUrl() ?>"> <a href="<?= $panel->getUrl() ?>">
<img width="29" height="30" alt="" src="<?= $panel->getYiiLogo() ?>"> <img width="29" height="30" alt="" src="<?= $panel->getYiiLogo() ?>">
<span><span class="label"><?= $panel->data['application']['yii'] ?></span> PHP <span class="label"><?= $panel->data['php']['version'] ?></span></span> <span><?= $panel->data['application']['yii'] ?></span>
</a> </a>
</div> </div>
<div class="yii-debug-toolbar-block">
<?= Html::a('PHP ' . $panel->data['php']['version'], ['phpinfo'], ['title' => 'Show phpinfo()', 'target' => 'phpinfo']) ?>
</div>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment