xref: /webtrees/resources/views/admin/server-information.phtml (revision 37231d1e839cad24e911f38c73f4dc77a58e3eec)
1<?php use Fisharebest\Webtrees\I18N; ?>
2
3<?= view('components/breadcrumbs', ['links' => [route('admin-control-panel') => I18N::translate('Control panel'), $title]]) ?>
4
5<h1><?= $title ?></h1>
6
7<h2>
8    <?= I18N::translate('PHP information') ?>
9</h2>
10
11<div class="php-info" dir="ltr">
12    <?= $phpinfo ?>
13</div>
14
15
16<h2>
17    <?= I18N::translate('MySQL variables') ?>
18</h2>
19<dl>
20    <?php foreach ($mysql_variables as $variable => $value) : ?>
21        <dt><?= e($variable) ?></dt>
22        <dd><?= e($value) ?></dd>
23    <?php endforeach ?>
24</dl>
25