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.
14 lines
570 B
14 lines
570 B
11 years ago
|
<?php
|
||
|
use yii\helpers\Html;
|
||
|
?>
|
||
|
<h1>Configuration</h1>
|
||
|
<?php
|
||
|
echo $this->context->renderPartial('panels/config/_data_table',[ 'caption' => 'Application Configuration', 'values' => $app]);
|
||
|
|
||
|
if (!empty($extensions)) {
|
||
|
echo $this->context->renderPartial('panels/config/_data_table',[ 'caption' => 'Installed Extensions', 'values' => $extensions]);
|
||
|
}
|
||
|
|
||
|
echo $this->context->renderPartial('panels/config/_data_table',[ 'caption' => 'PHP Configuration', 'values' => $php]);
|
||
|
?>
|
||
|
<div><?php echo Html::a('Show phpinfo »', ['phpinfo'], ['class' => 'btn btn-primary']); ?></div>
|