xref: /webtrees/resources/views/admin/server-information.phtml (revision 36de22acf6348b1059dac63e3cd19589574906ac)
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