xref: /webtrees/resources/views/admin/server-information.phtml (revision e72c24d6f8af5daa6dc0f4942f8c8f018f99ab41)
1<?php
2
3use Fisharebest\Webtrees\Http\RequestHandlers\ControlPanel;
4use Fisharebest\Webtrees\I18N;
5
6?>
7
8<?= view('components/breadcrumbs', ['links' => [route(ControlPanel::class) => I18N::translate('Control panel'), $title]]) ?>
9
10<h1><?= $title ?></h1>
11
12<h2>
13    <?= I18N::translate('PHP information') ?>
14</h2>
15
16<div class="php-info" dir="ltr">
17    <?= $phpinfo ?>
18</div>
19