forked from fisharebest/webtrees
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
135 lines (118 loc) · 4.25 KB
/
index.php
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<?php
/**
* webtrees: online genealogy
* Copyright (C) 2017 webtrees development team
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
namespace Fisharebest\Webtrees;
use Fisharebest\Webtrees\Controller\AjaxController;
use Fisharebest\Webtrees\Controller\PageController;
use Fisharebest\Webtrees\Functions\Functions;
use Fisharebest\Webtrees\Functions\FunctionsDb;
/** @global Tree $WT_TREE */
global $WT_TREE;
require 'includes/session.php';
// The only option for action is "ajax"
$ajax = (bool) Filter::get('ajax');
// The default view depends on whether we are logged in
if (Auth::check()) {
$ctype = Filter::get('ctype', 'gedcom|user', 'user');
} else {
$ctype = 'gedcom';
}
// Get the blocks list
if ($ctype === 'user') {
$blocks = FunctionsDb::getUserBlocks(Auth::id());
} else {
$blocks = FunctionsDb::getTreeBlocks($WT_TREE->getTreeId());
}
$active_blocks = Module::getActiveBlocks($WT_TREE);
// The latest version is shown on the administration page. This updates it every day.
Functions::fetchLatestVersion();
// We generate individual blocks using AJAX
if ($ajax) {
$controller = new AjaxController;
$controller->pageHeader();
// Check we’re displaying an allowable block.
$block_id = Filter::getInteger('block_id');
if (array_key_exists($block_id, $blocks['main'])) {
$module_name = $blocks['main'][$block_id];
} elseif (array_key_exists($block_id, $blocks['side'])) {
$module_name = $blocks['side'][$block_id];
} else {
return;
}
if (array_key_exists($module_name, $active_blocks)) {
echo $active_blocks[$module_name]->getBlock($block_id);
}
return;
}
// Redirect search engines to the full URL
if (Filter::get('ctype') !== $ctype || Filter::get('ged') !== $WT_TREE->getName()) {
header('Location: index.php?ctype=' . $ctype . '&ged=' . $WT_TREE->getNameUrl());
return;
}
$controller = new PageController;
if ($ctype === 'user') {
$controller->restrictAccess(Auth::check());
}
$controller
->setPageTitle($ctype === 'user' ? I18N::translate('My page') : $WT_TREE->getTitle())
->setMetaRobots('index,follow')
->pageHeader()
// By default jQuery modifies AJAX URLs to disable caching, causing JS libraries to be loaded many times.
->addInlineJavascript('jQuery.ajaxSetup({cache:true});');
if ($ctype === 'user') {
echo '<h2 class="text-center">', $controller->getPageTitle(), '</h2>';
}
echo '<div class="row">';
if ($blocks['main']) {
if ($blocks['side']) {
echo '<div class="col-sm-8 wt-main-blocks">';
} else {
echo '<div class="col-sm-12 wt-main-blocks">';
}
foreach ($blocks['main'] as $block_id => $module_name) {
if (array_key_exists($module_name, $active_blocks)) {
if ($active_blocks[$module_name]->loadAjax()) {
// Load the block asynchronously
$ajax_url = Html::url('index.php', ['ctype' => $ctype, 'block_id' => $block_id, 'ajax' => 1]);
echo '<div class="wt-ajax-load" data-ajax-url="' . Html::escape($ajax_url) . '"></div>';
} else {
// Load the block directly
echo $active_blocks[$module_name]->getBlock($block_id);
}
}
}
echo '</div>';
}
if ($blocks['side']) {
if ($blocks['main']) {
echo '<div class="col-sm-4 wt-side-blocks">';
} else {
echo '<div class="col-sm-12 wt-side-blocks">';
}
foreach ($blocks['side'] as $block_id => $module_name) {
if (array_key_exists($module_name, $active_blocks)) {
if ($active_blocks[$module_name]->loadAjax()) {
// Load the block asynchronously
$ajax_url = Html::url('index.php', ['ctype' => $ctype, 'block_id' => $block_id, 'ajax' => 1]);
echo '<div class="wt-ajax-load" data-ajax-url="' . Html::escape($ajax_url) . '"></div>';
} else {
// Load the block directly
echo $active_blocks[$module_name]->getBlock($block_id);
}
}
}
echo '</div>';
}
echo '</div>';