blob: 6c7c66592083fbb2410cabb056f917ee72fde487 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
<?php
declare(strict_types=1);
use Fisharebest\Webtrees\View;
?>
<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-toggle="tab" data-href="<?= e($url) ?>" role="tab">
<?= $label ?>
</a>
</li>
<?php endforeach ?>
</ul>
<div class="tab-content">
<?php foreach ($tabs as $label => $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-toggle="tab"][data-href]').on('show.bs.tab', function () {
$(this.getAttribute('href') + ':empty').load($(this).data('href'));
});
// If the URL contains a fragment, then activate the corresponding tab.
// Use a prefix on the fragment, to prevent scrolling to the element.
var target = window.location.hash.replace("tab-", "");
var tab = $("#statistics-tabs .nav-link[href='" + target + "']");
// If not, then activate the first tab.
if (tab.length === 0) {
tab = $("#statistics-tabs .nav-link:first");
}
tab.tab("show");
// If the user selects a tab, update the URL to reflect this
$('#statistics-tabs a[data-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() ?>
|