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; 87c2c99faSGreg Roachuse Fisharebest\Webtrees\Tree; 97c2c99faSGreg Roachuse Illuminate\Support\Collection; 107c2c99faSGreg Roach 117c2c99faSGreg Roach/** 1236779af1SGreg Roach * @var Collection<int,object> $faqs 137c2c99faSGreg Roach * @var string $max_block_order 147c2c99faSGreg Roach * @var string $min_block_order 157c2c99faSGreg Roach * @var string $title 167c2c99faSGreg Roach * @var Tree $tree 177c2c99faSGreg Roach * @var array<string,string> $tree_names 187c2c99faSGreg Roach */ 1971378461SGreg Roach 2071378461SGreg Roach?> 21dd6b2bfcSGreg Roach 223213013eSGreg Roach<?= view('components/breadcrumbs', ['links' => [route(ControlPanel::class) => I18N::translate('Control panel'), route(ModulesAllPage::class) => I18N::translate('Modules'), $title]]) ?> 23dd6b2bfcSGreg Roach 24dd6b2bfcSGreg Roach<h1><?= $title ?></h1> 25dd6b2bfcSGreg Roach 26dd6b2bfcSGreg Roach<p> 27dd6b2bfcSGreg Roach <?= /* I18N: FAQ = “Frequently Asked Question” */ 28dd6b2bfcSGreg Roach I18N::translate('FAQs are lists of questions and answers, which allow you to explain the site’s rules, policies, and procedures to your visitors. Questions are typically concerned with privacy, copyright, user-accounts, unsuitable content, requirement for source-citations, etc.') ?> 29dd6b2bfcSGreg Roach <?= I18N::translate('You may use HTML to format the answer and to add links to other websites.') ?> 30dd6b2bfcSGreg Roach</p> 31dd6b2bfcSGreg Roach 32315eb316SGreg Roach<form method="post" class="row"> 33315eb316SGreg Roach <div class="col-auto"> 34315eb316SGreg Roach <div class="input-group"> 35315eb316SGreg Roach <?= view('components/select', ['name' => 'tree', 'selected' => $tree->name(), 'options' => $tree_names, 'aria_label' => I18N::translate('Family tree')]) ?> 36dd6b2bfcSGreg Roach <input type="submit" class="btn btn-primary" value="<?= I18N::translate('show') ?>"> 37315eb316SGreg Roach </div> 38315eb316SGreg Roach </div> 3981443e3cSGreg Roach 4081443e3cSGreg Roach <?= csrf_field() ?> 41dd6b2bfcSGreg Roach</form> 42dd6b2bfcSGreg Roach 43dd6b2bfcSGreg Roach<p> 44d72b284aSGreg Roach <a href="<?= e(route('module', ['module' => 'faq', 'action' => 'AdminEdit', 'tree' => $tree->name()])) ?>" class="btn btn-link"> 45dd6b2bfcSGreg Roach <?= view('icons/add') ?> 46dd6b2bfcSGreg Roach <?= /* I18N: FAQ = “Frequently Asked Question” */ 47dd6b2bfcSGreg Roach I18N::translate('Add an FAQ') ?> 48dd6b2bfcSGreg Roach </a> 49dd6b2bfcSGreg Roach</p> 50dd6b2bfcSGreg Roach 51dd6b2bfcSGreg Roach<table class="table table-bordered"> 52315eb316SGreg Roach <caption> 53315eb316SGreg Roach <?= I18N::translate('Frequently asked questions') ?> 54315eb316SGreg Roach </caption> 55315eb316SGreg Roach 56dd6b2bfcSGreg Roach <thead> 57dd6b2bfcSGreg Roach <tr> 58dd6b2bfcSGreg Roach <th><?= I18N::translate('Sort order') ?></th> 59dd6b2bfcSGreg Roach <th><?= I18N::translate('Family tree') ?></th> 60dd6b2bfcSGreg Roach <th><?= I18N::translate('Question') ?></th> 611d1f373cSGreg Roach <th><?= I18N::translate('Move up') ?></th> 621d1f373cSGreg Roach <th><?= I18N::translate('Move down') ?></th> 631d1f373cSGreg Roach <th><?= I18N::translate('Edit') ?></th> 641d1f373cSGreg Roach <th><?= I18N::translate('Delete') ?></th> 65dd6b2bfcSGreg Roach </tr> 66dd6b2bfcSGreg Roach </thead> 67315eb316SGreg Roach 68dd6b2bfcSGreg Roach <tbody> 69dd6b2bfcSGreg Roach <?php foreach ($faqs as $faq) : ?> 70dd6b2bfcSGreg Roach <tr class="faq_edit_pos"> 71dd6b2bfcSGreg Roach <td> 72f118193aSGreg Roach <?= I18N::number($faq->block_order) ?> 73dd6b2bfcSGreg Roach </td> 74dd6b2bfcSGreg Roach <td> 75dd6b2bfcSGreg Roach <?php if ($faq->gedcom_id === null) : ?> 76dd6b2bfcSGreg Roach <?= I18N::translate('All') ?> 77dd6b2bfcSGreg Roach <?php else : ?> 78cc13d6d8SGreg Roach <?= e($tree->title()) ?> 79dd6b2bfcSGreg Roach <?php endif ?> 80dd6b2bfcSGreg Roach </td> 81dd6b2bfcSGreg Roach <td> 82dd6b2bfcSGreg Roach <?= e($faq->header) ?> 83dd6b2bfcSGreg Roach </td> 84dd6b2bfcSGreg Roach <td> 857c2c99faSGreg Roach <?php if ($faq->block_order !== $min_block_order) : ?> 86d4786c66SGreg Roach <a href="#" data-wt-post-url="<?= e(route('module', ['module' => 'faq', 'action' => 'AdminMoveUp', 'block_id' => $faq->block_id])) ?>" class="btn btn-secondary"> 87dd6b2bfcSGreg Roach <?= view('icons/arrow-up') ?> 881d1f373cSGreg Roach </a> 89dd6b2bfcSGreg Roach <?php endif ?> 90dd6b2bfcSGreg Roach </td> 91dd6b2bfcSGreg Roach <td> 927c2c99faSGreg Roach <?php if ($faq->block_order !== $max_block_order) : ?> 93d4786c66SGreg Roach <a href="#" data-wt-post-url="<?= e(route('module', ['module' => 'faq', 'action' => 'AdminMoveDown', 'block_id' => $faq->block_id])) ?>" class="btn btn-secondary"> 94dd6b2bfcSGreg Roach <?= view('icons/arrow-down') ?> 951d1f373cSGreg Roach </a> 96dd6b2bfcSGreg Roach <?php endif ?> 97dd6b2bfcSGreg Roach </td> 98dd6b2bfcSGreg Roach <td> 99315eb316SGreg Roach <a href="<?= e(route('module', ['module' => 'faq', 'action' => 'AdminEdit', 'block_id' => $faq->block_id, 'tree' => $tree->name()])) ?>" aria-label="<?= I18N::translate('Edit') ?>" class="btn btn-primary"> 100dd6b2bfcSGreg Roach <?= view('icons/edit') ?> 101dd6b2bfcSGreg Roach </a> 102dd6b2bfcSGreg Roach </td> 103dd6b2bfcSGreg Roach <td> 104d4786c66SGreg Roach <a href="#" data-wt-post-url="<?= e(route('module', ['module' => 'faq', 'action' => 'AdminDelete', 'block_id' => $faq->block_id])) ?>" data-wt-confirm="<?= I18N::translate('Are you sure you want to delete “%s”?', e($faq->header)) ?>" aria-label="<?= I18N::translate('Delete') ?>" class="btn btn-danger"> 105dd6b2bfcSGreg Roach <?= view('icons/delete') ?> 1061d1f373cSGreg Roach </a> 107dd6b2bfcSGreg Roach </td> 108dd6b2bfcSGreg Roach </tr> 109dd6b2bfcSGreg Roach <?php endforeach ?> 110dd6b2bfcSGreg Roach </tbody> 111dd6b2bfcSGreg Roach</table> 112