xref: /webtrees/resources/views/fact-media.phtml (revision 5bfc689774bb9a6401271c4ed15a6d50652c991b)
1<?php
2
3use Fisharebest\Webtrees\Fact;
4
5/**
6 * @var Fact $fact
7 */
8
9?>
10
11<?php if (preg_match_all('/\n(2 OBJE\b.*(?:\n[^2].*)*)/', $fact->gedcom(), $matches, PREG_SET_ORDER) > 0) : ?>
12    <div class="wt-fact-media mt-2">
13        <?php foreach ($matches as $match) : ?>
14            <?= view('fact-gedcom-fields', ['gedcom' => $match[1], 'parent' => $fact->tag(), 'tree' => $fact->record()->tree()]) ?>
15        <?php endforeach ?>
16    </div>
17<?php endif ?>
18