xref: /webtrees/resources/views/admin/server-information.phtml (revision 10e0649788c8d7d4974d81c048ca2b225df8f22e)
10c0910bfSGreg Roach<?php
2dd6b2bfcSGreg Roach
3*10e06497SGreg Roachdeclare(strict_types=1);
4*10e06497SGreg Roach
50c0910bfSGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\ControlPanel;
60c0910bfSGreg Roachuse Fisharebest\Webtrees\I18N;
70c0910bfSGreg Roach
87c2c99faSGreg Roach/**
97c2c99faSGreg Roach * @var string $phpinfo
107c2c99faSGreg Roach * @var string $title
117c2c99faSGreg Roach */
127c2c99faSGreg Roach
130c0910bfSGreg Roach?>
140c0910bfSGreg Roach
150c0910bfSGreg Roach<?= view('components/breadcrumbs', ['links' => [route(ControlPanel::class) => I18N::translate('Control panel'), $title]]) ?>
16dd6b2bfcSGreg Roach
17dd6b2bfcSGreg Roach<h1><?= $title ?></h1>
18dd6b2bfcSGreg Roach
19dd6b2bfcSGreg Roach<h2>
20dd6b2bfcSGreg Roach    <?= I18N::translate('PHP information') ?>
21dd6b2bfcSGreg Roach</h2>
22dd6b2bfcSGreg Roach
23dd6b2bfcSGreg Roach<div class="php-info" dir="ltr">
24dd6b2bfcSGreg Roach    <?= $phpinfo ?>
25dd6b2bfcSGreg Roach</div>
26