13cfcc809SGreg Roach<?php 23cfcc809SGreg Roach 310e06497SGreg Roachdeclare(strict_types=1); 410e06497SGreg Roach 50c0910bfSGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\ControlPanel; 63213013eSGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\ModulesAllPage; 70c0910bfSGreg Roachuse Fisharebest\Webtrees\I18N; 87c2c99faSGreg Roachuse Fisharebest\Webtrees\Tree; 97c2c99faSGreg Roachuse Illuminate\Support\Collection; 107c2c99faSGreg Roach 117c2c99faSGreg Roach/** 1236779af1SGreg Roach * @var Collection<int,object> $stories 137c2c99faSGreg Roach * @var string $title 147c2c99faSGreg Roach * @var Tree $tree 157c2c99faSGreg Roach * @var array<string> $tree_names 167c2c99faSGreg Roach */ 17dd6b2bfcSGreg Roach 180c0910bfSGreg Roach?> 190c0910bfSGreg Roach 203213013eSGreg Roach<?= view('components/breadcrumbs', ['links' => [route(ControlPanel::class) => I18N::translate('Control panel'), route(ModulesAllPage::class) => I18N::translate('Modules'), $title]]) ?> 21dd6b2bfcSGreg Roach 22dd6b2bfcSGreg Roach<h1><?= $title ?></h1> 23dd6b2bfcSGreg Roach 24315eb316SGreg Roach<form method="post" class="row"> 25315eb316SGreg Roach <div class="col-auto"> 26315eb316SGreg Roach <div class="input-group"> 27315eb316SGreg Roach <?= view('components/select', ['name' => 'tree', 'selected' => $tree->name(), 'options' => $tree_names, 'aria_label' => I18N::translate('Family tree')]) ?> 28315eb316SGreg Roach <input type="submit" class="btn btn-primary" value="<?= I18N::translate('show') ?>"> 29315eb316SGreg Roach </div> 30315eb316SGreg Roach </div> 3181443e3cSGreg Roach 3281443e3cSGreg Roach <?= csrf_field() ?> 33dd6b2bfcSGreg Roach</form> 34dd6b2bfcSGreg Roach 35dd6b2bfcSGreg Roach<p> 36d72b284aSGreg Roach <a href="<?= e(route('module', ['module' => 'stories', 'action' => 'AdminEdit', 'tree' => $tree->name()])) ?>" class="btn btn-link"> 37dd6b2bfcSGreg Roach <?= view('icons/add') ?> 38dd6b2bfcSGreg Roach <?= I18N::translate('Add a story') ?> 39dd6b2bfcSGreg Roach </a> 40dd6b2bfcSGreg Roach</p> 41dd6b2bfcSGreg Roach 4291be4964SGreg Roach<table 4391be4964SGreg Roach class="table table-bordered table-sm datatables d-none" 4491be4964SGreg Roach <?= view('lists/datatables-attributes') ?> 4591be4964SGreg Roach data-columns="<?= e(json_encode([ 4691be4964SGreg Roach null, 4791be4964SGreg Roach null, 4891be4964SGreg Roach ['sortable' => false], 4991be4964SGreg Roach ['sortable' => false], 50315eb316SGreg Roach ], JSON_THROW_ON_ERROR)) ?>" 5191be4964SGreg Roach> 52315eb316SGreg Roach <caption> 53315eb316SGreg Roach <?= I18N::translate('Stories') ?> 54315eb316SGreg Roach </caption> 55315eb316SGreg Roach 56dd6b2bfcSGreg Roach <thead> 57dd6b2bfcSGreg Roach <tr> 58dd6b2bfcSGreg Roach <th><?= I18N::translate('Individual') ?></th> 59dd6b2bfcSGreg Roach <th><?= I18N::translate('Story title') ?></th> 60dd6b2bfcSGreg Roach <th><?= I18N::translate('Edit') ?></th> 61dd6b2bfcSGreg Roach <th><?= I18N::translate('Delete') ?></th> 62dd6b2bfcSGreg Roach </tr> 63dd6b2bfcSGreg Roach </thead> 64315eb316SGreg Roach 65dd6b2bfcSGreg Roach <tbody> 66dd6b2bfcSGreg Roach <?php foreach ($stories as $story) : ?> 67dd6b2bfcSGreg Roach <tr> 68dd6b2bfcSGreg Roach <td> 69dd6b2bfcSGreg Roach <?php if ($story->individual !== null) : ?> 70dd6b2bfcSGreg Roach <a href="<?= e($story->individual->url()) ?>#tab-stories"> 7139ca88baSGreg Roach <?= $story->individual->fullName() ?> 72dd6b2bfcSGreg Roach </a> 73dd6b2bfcSGreg Roach <?php else : ?> 74dd6b2bfcSGreg Roach <?= $story->xref ?> 75dd6b2bfcSGreg Roach <?php endif ?> 76dd6b2bfcSGreg Roach </td> 77dd6b2bfcSGreg Roach <td> 78dd6b2bfcSGreg Roach <?= e($story->title) ?> 79dd6b2bfcSGreg Roach </td> 80dd6b2bfcSGreg Roach <td> 81315eb316SGreg Roach <a class="btn btn-primary" href="<?= e(route('module', ['module' => 'stories', 'action' => 'AdminEdit', 'tree' => $tree->name(), 'block_id' => $story->block_id])) ?>" aria-label="<?= I18N::translate('Edit') ?>"> 82dd6b2bfcSGreg Roach <?= view('icons/edit') ?> 83dd6b2bfcSGreg Roach <?= I18N::translate('Edit') ?> 84dd6b2bfcSGreg Roach </a> 85dd6b2bfcSGreg Roach </td> 86dd6b2bfcSGreg Roach <td> 87d72b284aSGreg Roach <form method="post" action="<?= e(route('module', ['module' => 'stories', 'action' => 'AdminDelete', 'tree' => $tree->name(), 'block_id' => $story->block_id])) ?>"> 88*1270d276SGreg Roach <button type="submit" class="btn btn-danger" data-wt-confirm="<?= I18N::translate('Are you sure you want to delete “%s”?', e($story->title)) ?>" aria-label="<?= I18N::translate('Delete') ?>"> 89dd6b2bfcSGreg Roach <?= view('icons/delete') ?> 90dd6b2bfcSGreg Roach <?= I18N::translate('Delete') ?> 91dd6b2bfcSGreg Roach </button> 9281443e3cSGreg Roach 9381443e3cSGreg Roach <?= csrf_field() ?> 94dd6b2bfcSGreg Roach </form> 95dd6b2bfcSGreg Roach </td> 96dd6b2bfcSGreg Roach </tr> 97dd6b2bfcSGreg Roach <?php endforeach ?> 98dd6b2bfcSGreg Roach </tbody> 99dd6b2bfcSGreg Roach</table> 100