xref: /webtrees/resources/views/individual-page-sidebars.phtml (revision 0f5fd22fb1857ad87285e5357592434d47b1f3bf)
1*0f5fd22fSGreg Roach<?php
2*0f5fd22fSGreg Roach
3*0f5fd22fSGreg Roachuse Fisharebest\Webtrees\Individual;
4*0f5fd22fSGreg Roachuse Fisharebest\Webtrees\Module\ModuleSidebarInterface;
5*0f5fd22fSGreg Roachuse Illuminate\Support\Collection;
6*0f5fd22fSGreg Roach
7*0f5fd22fSGreg Roach/**
8*0f5fd22fSGreg Roach * @var Individual                         $record
9*0f5fd22fSGreg Roach * @var Collection<ModuleSidebarInterface> $sidebars
10*0f5fd22fSGreg Roach */
11*0f5fd22fSGreg Roach?>
12*0f5fd22fSGreg Roach
13*0f5fd22fSGreg Roach<div class="col-sm-4 accordion" id="sidebar">
14*0f5fd22fSGreg Roach    <?php foreach ($sidebars as $sidebar) : ?>
15*0f5fd22fSGreg Roach        <div class="card">
16*0f5fd22fSGreg Roach            <div class="card-header" role="tab" id="sidebar-header-<?= $sidebar->name() ?>">
17*0f5fd22fSGreg Roach                <div class="card-title mb-0">
18*0f5fd22fSGreg Roach                    <a data-toggle="collapse" href="#sidebar-content-<?= $sidebar->name() ?>" aria-expanded="<?= $sidebar->name() === 'family_nav' ? 'true' : 'false' ?>" aria-controls="sidebar-content-<?= $sidebar->name() ?>">
19*0f5fd22fSGreg Roach                        <?= view('icons/expand') ?>
20*0f5fd22fSGreg Roach                        <?= view('icons/collapse') ?>
21*0f5fd22fSGreg Roach                        <?= $sidebar->sidebarTitle() ?>
22*0f5fd22fSGreg Roach                    </a>
23*0f5fd22fSGreg Roach                </div>
24*0f5fd22fSGreg Roach            </div>
25*0f5fd22fSGreg Roach
26*0f5fd22fSGreg Roach            <div id="sidebar-content-<?= $sidebar->name() ?>" class="collapse<?= $sidebar->name() === 'family_nav' ? ' show' : '' ?>" data-parent="#sidebar" aria-labelledby="sidebar-header-<?= $sidebar->name() ?>">
27*0f5fd22fSGreg Roach                <div class="card-body">
28*0f5fd22fSGreg Roach                    <?= $sidebar->getSidebarContent($record) ?>
29*0f5fd22fSGreg Roach                </div>
30*0f5fd22fSGreg Roach            </div>
31*0f5fd22fSGreg Roach        </div>
32*0f5fd22fSGreg Roach    <?php endforeach ?>
33*0f5fd22fSGreg Roach</div>
34