171378461SGreg Roach<?php 271378461SGreg Roach 3*10e06497SGreg Roachdeclare(strict_types=1); 4*10e06497SGreg Roach 50c0910bfSGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\ControlPanel; 63213013eSGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\ModulesAllPage; 771378461SGreg Roachuse Fisharebest\Webtrees\I18N; 871378461SGreg Roach 924f2a3afSGreg Roach/** 1024f2a3afSGreg Roach * @var int $block_id 1124f2a3afSGreg Roach * @var int $block_order 1224f2a3afSGreg Roach * @var string $body 1324f2a3afSGreg Roach * @var int $gedcom_id 1424f2a3afSGreg Roach * @var array<int,string> $gedcom_ids 1524f2a3afSGreg Roach * @var string $header 1624f2a3afSGreg Roach * @var array<string> $languages 1724f2a3afSGreg Roach * @var string $title 1824f2a3afSGreg Roach * 1924f2a3afSGreg Roach */ 2024f2a3afSGreg Roach 2171378461SGreg Roach?> 22dd6b2bfcSGreg Roach 233213013eSGreg Roach<?= view('components/breadcrumbs', ['links' => [route(ControlPanel::class) => I18N::translate('Control panel'), route(ModulesAllPage::class) => I18N::translate('Modules'), route('module', ['module' => 'faq', 'action' => 'Admin']) => I18N::translate('Frequently asked questions'), $title]]) ?> 24dd6b2bfcSGreg Roach 25dd6b2bfcSGreg Roach<h1><?= $title ?></h1> 26dd6b2bfcSGreg Roach 271d1f373cSGreg Roach<form method="post" name="faq" class="form-horizontal"> 28dd6b2bfcSGreg Roach <input type="hidden" name="block_id" value="<?= $block_id ?>"> 29dd6b2bfcSGreg Roach 309e3c2cf9SGreg Roach <div class="row mb-3"> 31dd6b2bfcSGreg Roach <label for="header" class="col-sm-3 col-form-label"> 32dd6b2bfcSGreg Roach <?= I18N::translate('Question') ?> 33dd6b2bfcSGreg Roach </label> 34dd6b2bfcSGreg Roach 35dd6b2bfcSGreg Roach <div class="col-sm-9"> 36dd6b2bfcSGreg Roach <input type="text" class="form-control" name="header" id="header" 37dd6b2bfcSGreg Roach value="<?= e($header) ?>"> 38dd6b2bfcSGreg Roach </div> 39dd6b2bfcSGreg Roach </div> 40dd6b2bfcSGreg Roach 419e3c2cf9SGreg Roach <div class="row mb-3"> 421e653452SGreg Roach <label for="body" class="col-sm-3 col-form-label"> 43dd6b2bfcSGreg Roach <?= I18N::translate('Answer') ?> 44dd6b2bfcSGreg Roach </label> 45dd6b2bfcSGreg Roach 46dd6b2bfcSGreg Roach <div class="col-sm-9"> 471e653452SGreg Roach <textarea name="body" id="body" class="form-control html-edit" rows="10"><?= e($body) ?></textarea> 48dd6b2bfcSGreg Roach </div> 49dd6b2bfcSGreg Roach </div> 50dd6b2bfcSGreg Roach 519e3c2cf9SGreg Roach <div class="row mb-3"> 52dd6b2bfcSGreg Roach <label for="xref" class="col-sm-3 col-form-label"> 53dd6b2bfcSGreg Roach <?= /* I18N: Label for a configuration option */ 54dd6b2bfcSGreg Roach I18N::translate('Show this block for which languages') ?> 55dd6b2bfcSGreg Roach </label> 56dd6b2bfcSGreg Roach 57dd6b2bfcSGreg Roach <div class="col-sm-9"> 58e73fb82fSGreg Roach <?= view('edit/language-checkboxes', ['languages' => $languages]) ?> 59dd6b2bfcSGreg Roach </div> 60dd6b2bfcSGreg Roach </div> 61dd6b2bfcSGreg Roach 629e3c2cf9SGreg Roach <div class="row mb-3"> 63dd6b2bfcSGreg Roach <label for="block_order" class="col-sm-3 col-form-label"> 64dd6b2bfcSGreg Roach <?= I18N::translate('Sort order') ?> 65dd6b2bfcSGreg Roach </label> 66dd6b2bfcSGreg Roach 67dd6b2bfcSGreg Roach <div class="col-sm-9"> 68f118193aSGreg Roach <input type="number" name="block_order" id="block_order" class="form-control" value="<?= $block_order ?>" min="1"> 69dd6b2bfcSGreg Roach </div> 70dd6b2bfcSGreg Roach </div> 71dd6b2bfcSGreg Roach 729e3c2cf9SGreg Roach <div class="row mb-3"> 73dd6b2bfcSGreg Roach <label for="gedcom_id" class="col-sm-3 col-form-label"> 74dd6b2bfcSGreg Roach <?= I18N::translate('Family tree') ?> 75dd6b2bfcSGreg Roach </label> 76dd6b2bfcSGreg Roach 77dd6b2bfcSGreg Roach <div class="col-sm-9"> 781e653452SGreg Roach <?= view('components/select', ['name' => 'gedcom_id', 'selected' => $gedcom_id, 'options' => $gedcom_ids]) ?> 79315eb316SGreg Roach <div class="form-text"> 80dd6b2bfcSGreg Roach <?= /* I18N: FAQ = “Frequently Asked Question” */ 81dd6b2bfcSGreg Roach I18N::translate('An FAQ can be displayed on just one of the family trees, or on all the family trees.') ?> 82315eb316SGreg Roach </div> 83dd6b2bfcSGreg Roach </div> 84dd6b2bfcSGreg Roach </div> 85dd6b2bfcSGreg Roach 869e3c2cf9SGreg Roach <div class="row mb-3"> 87dd6b2bfcSGreg Roach <div class="offset-sm-3 col-sm-9"> 88dd6b2bfcSGreg Roach <button type="submit" class="btn btn-primary"> 89dd6b2bfcSGreg Roach <?= view('icons/save') ?> 90dd6b2bfcSGreg Roach <?= I18N::translate('save') ?> 91dd6b2bfcSGreg Roach </button> 92dd6b2bfcSGreg Roach </div> 93dd6b2bfcSGreg Roach </div> 9481443e3cSGreg Roach 9581443e3cSGreg Roach <?= csrf_field() ?> 96dd6b2bfcSGreg Roach</form> 97