xref: /webtrees/index.php (revision 6723076648e6a3d37dc98fd20ba3e41a97f20d3f)
1<?php
2// My page page allows a logged in user the abilty
3// to keep bookmarks, see a list of upcoming events, etc.
4//
5// webtrees: Web based Family History software
6// Copyright (C) 2014 webtrees development team.
7//
8// Derived from PhpGedView
9// Copyright (C) 2002 to 2009 PGV Development Team.  All rights reserved.
10//
11// This program is free software; you can redistribute it and/or modify
12// it under the terms of the GNU General Public License as published by
13// the Free Software Foundation; either version 2 of the License, or
14// (at your option) any later version.
15//
16// This program is distributed in the hope that it will be useful,
17// but WITHOUT ANY WARRANTY; without even the implied warranty of
18// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19// GNU General Public License for more details.
20//
21// You should have received a copy of the GNU General Public License
22// along with this program; if not, write to the Free Software
23// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24
25use WT\Auth;
26
27define('WT_SCRIPT_NAME', 'index.php');
28require './includes/session.php';
29
30// The only option for action is "ajax"
31$action = WT_Filter::get('action');
32
33// The default view depends on whether we are logged in
34$ctype = WT_Filter::get('ctype', 'gedcom|user', WT_USER_ID ? 'user' : 'gedcom');
35
36// Get the blocks list
37if (WT_USER_ID && $ctype=='user') {
38	$blocks = get_user_blocks(WT_USER_ID);
39} else {
40	$blocks = get_gedcom_blocks(WT_GED_ID);
41}
42
43$all_blocks = WT_Module::getActiveBlocks();
44
45// The latest version is shown on the administration page.  This updates it every day.
46// TODO: send an email notification to the admin when new versions are available.
47fetch_latest_version();
48
49// We generate individual blocks using AJAX
50if ($action == 'ajax') {
51	$controller = new WT_Controller_Ajax();
52	$controller->pageHeader();
53
54	// Check we’re displaying an allowable block.
55	$block_id = WT_Filter::getInteger('block_id');
56	if (array_key_exists($block_id, $blocks['main'])) {
57		$module_name = $blocks['main'][$block_id];
58	} elseif (array_key_exists($block_id, $blocks['side'])) {
59		$module_name = $blocks['side'][$block_id];
60	} else {
61		exit;
62	}
63	if (array_key_exists($module_name, $all_blocks)) {
64		$class_name = $module_name.'_WT_Module';
65		$module = new $class_name;
66		$module->getBlock($block_id);
67	}
68	if (WT_DEBUG) {
69		echo execution_stats();
70	}
71	if (WT_DEBUG_SQL) {
72		echo WT_DB::getQueryLog();
73	}
74	exit;
75}
76
77$controller = new WT_Controller_Page();
78if ($ctype=='user') {
79	$controller->restrictAccess(Auth::isMember());
80}
81$controller
82	->setPageTitle($ctype=='user' ? WT_I18N::translate('My page') : WT_TREE_TITLE)
83	->setMetaRobots('index,follow')
84	->setCanonicalUrl(WT_SCRIPT_NAME . '?ctype=' . $ctype . '&amp;ged=' . WT_GEDCOM)
85	->pageHeader()
86	// By default jQuery modifies AJAX URLs to disable caching, causing JS libraries to be loaded many times.
87	->addInlineJavascript('jQuery.ajaxSetup({cache:true});');
88
89if ($ctype=='user') {
90	echo '<div id="my-page">';
91	echo '<h1 class="center">', WT_I18N::translate('My page'), '</h1>';
92} else {
93	echo '<div id="home-page">';
94}
95if ($blocks['main']) {
96	if ($blocks['side']) {
97		echo '<div id="index_main_blocks">';
98	} else {
99		echo '<div id="index_full_blocks">';
100	}
101	foreach ($blocks['main'] as $block_id=>$module_name) {
102		$class_name=$module_name.'_WT_Module';
103		$module=new $class_name;
104		if ($SEARCH_SPIDER || !$module->loadAjax()) {
105			// Load the block directly
106			$module->getBlock($block_id);
107		} else {
108			// Load the block asynchronously
109			echo '<div id="block_', $block_id, '"><div class="loading-image">&nbsp;</div></div>';
110			$controller->addInlineJavascript(
111				'jQuery("#block_'.$block_id.'").load("index.php?ctype='.$ctype.'&action=ajax&block_id='.$block_id.'");'
112			);
113		}
114	}
115	echo '</div>';
116}
117if ($blocks['side']) {
118	if ($blocks['main']) {
119		echo '<div id="index_small_blocks">';
120	} else {
121		echo '<div id="index_full_blocks">';
122	}
123	foreach ($blocks['side'] as $block_id=>$module_name) {
124		$class_name=$module_name.'_WT_Module';
125		$module=new $class_name;
126		if ($SEARCH_SPIDER || !$module->loadAjax()) {
127			// Load the block directly
128			$module->getBlock($block_id);
129		} else {
130			// Load the block asynchronously
131			echo '<div id="block_', $block_id, '"><div class="loading-image">&nbsp;</div></div>';
132			$controller->addInlineJavascript(
133				'jQuery("#block_'.$block_id.'").load("index.php?ctype='.$ctype.'&action=ajax&block_id='.$block_id.'");'
134			);
135		}
136	}
137	echo '</div>';
138}
139
140// link for changing blocks
141echo '<div id="link_change_blocks">';
142	if ($ctype=='user') echo '<a href="index_edit.php?user_id='.WT_USER_ID.'" onclick="return modalDialog(\'index_edit.php?user_id='.WT_USER_ID.'\', \'', WT_I18N::translate('Change the blocks on this page'), '\');">', WT_I18N::translate('Change the blocks on this page'), '</a>';
143	if (WT_USER_GEDCOM_ADMIN && $ctype=='gedcom') echo '<a href="index_edit.php?gedcom_id='.WT_GED_ID.'" onclick="return modalDialog(\'index_edit.php?gedcom_id='.WT_GED_ID.'\', \'', WT_I18N::translate('Change the blocks on this page'), '\');">', WT_I18N::translate('Change the blocks on this page'), '</a>';
144	if ($SHOW_COUNTER) {echo '<span>'.WT_I18N::translate('Hit count:').' '.$hitCount.'</span>';}
145echo '</div>', // <div id="link_change_blocks">
146	 '</div>'; // <div id="home-page">
147