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