fisharebest/webtrees

View on GitHub
resources/views/modals/record-created.phtml

Summary

Maintainability
Test Coverage
<?php

declare(strict_types=1);

/**
 * @var string $name
 * @var string $title
 * @var string $url
 */

?>
<?= view('modals/header', ['title' => $title]) ?>

<div class="modal-body">
    <a href="<?= e($url) ?>">
        <?= $name ?>
    </a>
</div>

<?= view('modals/footer-close') ?>