blob: 6cf3007856f17e11d7d9a880f5794edba3416746 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
<?php
use Fisharebest\Webtrees\Fact;
use Fisharebest\Webtrees\GedcomRecord;
use Fisharebest\Webtrees\Http\RequestHandlers\PasteFact;
use Fisharebest\Webtrees\I18N;
use Illuminate\Support\Collection;
/**
* @var Collection<Fact> $facts
* @var GedcomRecord $record
*/
?>
<?php if ($facts->isNotEmpty()) : ?>
<tr>
<th scope="row">
<label for="paste-fact">
<?= I18N::translate('Add from clipboard') ?>
</label>
</th>
<td>
<form method="post" action="<?= route(PasteFact::class, ['tree' => $record->tree()->name(), 'xref' => $record->xref()]) ?>">
<?= csrf_field() ?>
<div class="input-group">
<select class="custom-select" id="paste-fact" name="fact_id">
<?php foreach ($facts as $fact) : ?>
<option value="<?= e($fact->id()) ?>">
<?= $fact->label() ?>
<?php if ($fact->target() !== null) : ?>
– <?= strip_tags($fact->target()->fullName()) ?>
<?php elseif ($fact->value() !== '') : ?>
– <?= e($fact->value()) ?>
<?php endif ?>
<?php if ($fact->date()->isOK()) : ?>
– <?= $fact->date()->minimumDate()->format('%Y') ?>
<?php endif ?>
<?php if ($fact->place()->gedcomName() !== '') : ?>
– <?= $fact->place()->shortName() ?>
<?php endif ?>
</option>
<?php endforeach ?>
</select>
<div class="input-group-append">
<button class="btn btn-light" type="submit">
<?= /* I18N: A button label. */ I18N::translate('add') ?>
</button>
</div>
</div>
</form>
</td>
</tr>
<?php endif ?>
|