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