![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /var/www/html/webtrees/resources/views/modules/statistics-chart/ |
Upload File : |
<?php declare(strict_types=1); use Fisharebest\Webtrees\View; /** * @var array<string,string> $tabs * @var string $title */ ?> <h2 class="wt-page-title"> <?= $title ?> </h2> <div class="wt-page-content wt-chart wt-statistics-chart" id="statistics-tabs"> <ul class="nav nav-tabs" role="tablist"> <?php foreach ($tabs as $label => $url) : ?> <li class="nav-item" role="presentation"> <a class="nav-link" href="#tab-<?= e(md5($url)) ?>" data-bs-toggle="tab" data-wt-href="<?= e($url) ?>" role="tab"> <?= $label ?> </a> </li> <?php endforeach ?> </ul> <div class="tab-content"> <?php foreach ($tabs as $url) : ?> <div class="tab-pane fade wt-ajax-load" role="tabpanel" id="tab-<?= e(md5($url)) ?>"></div> <?php endforeach ?> </div> </div> <?php View::push('javascript') ?> <script> 'use strict'; // Bootstrap tabs - load content dynamically using AJAX $('a[data-bs-toggle="tab"][data-wt-href]').on('show.bs.tab', function () { $(this.getAttribute('href') + ':empty').load(this.dataset.wtHref); }); // If the URL contains a fragment, then activate the corresponding tab. // Use a prefix on the fragment, to prevent scrolling to the element. let target = window.location.hash.replace("tab-", ""); let tab = document.querySelector("#statistics-tabs .nav-link[href='" + target + "']"); // If not, then activate the first tab. tab = tab ?? document.querySelector("#statistics-tabs .nav-link"); tab.click(); // If the user selects a tab, update the URL to reflect this $('#statistics-tabs a[data-bs-toggle="tab"]').on('shown.bs.tab', function (e) { window.location.hash = "tab-" + e.target.href.substring(e.target.href.indexOf('#') + 1); }); </script> <?php View::endpush() ?>