xref: /webtrees/resources/views/modules/interactive-tree/chart.phtml (revision 6f5bd0bfab12b325068b1a1c83e0c767fb752964)
1575707d1SGreg Roach<?php
2575707d1SGreg Roach
310e06497SGreg Roachdeclare(strict_types=1);
410e06497SGreg Roach
5575707d1SGreg Roachuse Fisharebest\Webtrees\I18N;
67c2c99faSGreg Roachuse Fisharebest\Webtrees\Individual;
77c2c99faSGreg Roachuse Fisharebest\Webtrees\Tree;
87c2c99faSGreg Roach
97c2c99faSGreg Roach/**
107c2c99faSGreg Roach * @var Individual $individual
117c2c99faSGreg Roach * @var string     $module
127c2c99faSGreg Roach * @var string     $name
137c2c99faSGreg Roach * @var Tree       $tree
147c2c99faSGreg Roach */
15575707d1SGreg Roach
16575707d1SGreg Roach?>
17575707d1SGreg Roach
18abbc0e6bSGreg Roach<div class="wt-chart wt-chart-interactive">
19*6f5bd0bfSGreg Roach    <div id="<?= $name ?>_out" class="tv_out" data-url-details="<?= e(route('module', ['module' => $module, 'action' => 'Details', 'tree' => $tree->name(), 'dummy' => 'dummy'])) ?>" data-url-individuals="<?= e(route('module', ['module' => $module, 'action' => 'Individuals', 'tree' => $tree->name(), 'dummy' => 'dummy'])) ?>">
20575707d1SGreg Roach        <div id="tv_tools">
21575707d1SGreg Roach            <ul>
22575707d1SGreg Roach                <li id="tvbCompact" class="tv_button" title="<?= I18N::translate('Use compact layout') ?>">
23575707d1SGreg Roach                </li>
24c01f908aSGreg Roach                <li id="tvbFullscreen" class="tv_button">
25abbc0e6bSGreg Roach                    <a href="#" data-wt-fullscreen=".wt-chart-interactive">
26c01f908aSGreg Roach                        <span title="<?= I18N::translate('Enter fullscreen') ?>"><?= view('icons/enter-fullscreen') ?></span>
27c01f908aSGreg Roach                        <span title="<?= I18N::translate('Exit fullscreen') ?>"><?= view('icons/exit-fullscreen') ?></span>
28c01f908aSGreg Roach                    </a>
29c01f908aSGreg Roach                </li>
30575707d1SGreg Roach                <li class="tv_button" id="<?= $name ?>_loading">
31575707d1SGreg Roach                    <i class="icon-loading-small"></i>
32575707d1SGreg Roach                </li>
33575707d1SGreg Roach            </ul>
34575707d1SGreg Roach        </div>
35575707d1SGreg Roach        <div id="<?= $name ?>_in" class="tv_in" dir="ltr">
36575707d1SGreg Roach            <?= $individual ?>
37575707d1SGreg Roach        </div>
38575707d1SGreg Roach    </div>
39abbc0e6bSGreg Roach</div>
40