xref: /webtrees/resources/views/edit/icon-fact-edit.phtml (revision 10e0649788c8d7d4974d81c048ca2b225df8f22e)
12917771cSGreg Roach<?php
239b853a7SGreg Roach
3*10e06497SGreg Roachdeclare(strict_types=1);
4*10e06497SGreg Roach
57c2c99faSGreg Roachuse Fisharebest\Webtrees\Fact;
6a53fee79SGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\EditFactPage;
72917771cSGreg Roachuse Fisharebest\Webtrees\I18N;
82917771cSGreg Roach
97c2c99faSGreg Roach/**
107c2c99faSGreg Roach * @var Fact        $fact
11b315f3e1SGreg Roach * @var string|null $url
127c2c99faSGreg Roach */
137c2c99faSGreg Roach
142917771cSGreg Roach?>
152917771cSGreg Roach
169db6d3cbSGreg Roach<a class="btn btn-link btn-sm" href="<?= e(route(EditFactPage::class, ['xref' => $fact->record()->xref(), 'fact_id' => $fact->id(), 'tree' => $fact->record()->tree()->name(), 'url' => $url ?? $fact->record()->url()])) ?>" title="<?= I18N::translate('Edit') ?>">
1739b853a7SGreg Roach    <?= view('icons/edit') ?>
18315eb316SGreg Roach    <span class="visually-hidden"><?= I18N::translate('Edit') ?></span>
1939b853a7SGreg Roach</a>
20