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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
|
<?php
// Header for FAB theme
//
// webtrees: Web based Family History software
// Copyright (C) 2010 webtrees development team.
//
// Derived from PhpGedView
// Modifications Copyright (c) 2010 Greg Roach
//
// 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 2 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, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// @package webtrees
// @subpackage Themes
// @version $Id$
if (!defined('WT_WEBTREES')) {
header('HTTP/1.0 403 Forbidden');
exit;
}
// Definitions to simplify logic on pages with right-to-left languages
// TODO: merge this into the trunk?
if ($TEXT_DIRECTION=='ltr') {
define ('WT_CSS_ALIGN', 'left');
define ('WT_CSS_REVERSE_ALIGN', 'right');
} else {
define ('WT_CSS_ALIGN', 'right');
define ('WT_CSS_REVERSE_ALIGN', 'left');
}
echo
'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">',
'<html xmlns="http://www.w3.org/1999/xhtml" ', i18n::html_markup(), '>',
'<head>',
'<meta http-equiv="Content-type" content="text/html;charset=UTF-8" />',
'<meta name="description" content="', htmlspecialchars($META_DESCRIPTION), '" />',
'<meta name="robots" content="', htmlspecialchars($META_ROBOTS), '" />',
'<meta name="generator" content="', WT_WEBTREES, ' ', WT_VERSION_TEXT, '" />',
'<title>', htmlspecialchars($title), '</title>',
'<link type="image/x-icon" rel="shortcut icon" href="favicon.ico">',
'<link type="text/css" rel="stylesheet" href="', $stylesheet, '" />',
'<link type="text/css" rel="stylesheet" href="js/jquery/css/jquery-ui.custom.css" />',
'<link type="text/css" rel="stylesheet" href="', WT_THEME_DIR, 'jquery/jquery-ui_theme.css" />',
'<link type="text/css" rel="stylesheet" href="', WT_THEME_DIR, 'modules.css" />';
if ($BROWSERTYPE!='other') {
echo '<link type="text/css" rel="stylesheet" href="', WT_THEME_DIR, $BROWSERTYPE, '.css" />';
}
if ($TEXT_DIRECTION=='rtl') {
echo '<link type="text/css" rel="stylesheet" href="', WT_THEME_DIR, 'jquery/jquery-ui_theme_rtl.css" />';
}
if (WT_USE_LIGHTBOX) {
if ($TEXT_DIRECTION=='rtl') {
echo
'<link type="text/css" rel="stylesheet" href="modules/lightbox/css/clearbox_music_RTL.css" />',
'<link type="text/css" rel="stylesheet" href="modules/lightbox/css/album_page_RTL_ff.css" />';
} else {
echo
'<link type="text/css" rel="stylesheet" href="modules/lightbox/css/clearbox_music.css" />',
'<link type="text/css" rel="stylesheet" href="modules/lightbox/css/album_page.css" />';
}
}
echo
$javascript,
'</head>',
'<body id="body">';
if ($view!='simple') { // Use "simple" headers for popup windows
echo '<div id="header" class="block">';
// Print the user links
if ($SEARCH_SPIDER) {
// Search engines get a reduced menu
$menu_items=array(
WT_MenuBar::getGedcomMenu(),
WT_MenuBar::getListsMenu(),
WT_MenuBar::getCalendarMenu()
);
} else {
// Options for real users
echo '<div style="float:', WT_CSS_REVERSE_ALIGN, ';"><ul class="makeMenu">';
if (WT_USER_ID) {
echo
'<li><a href="edituser.php" class="link">', getUserFullName(WT_USER_ID), '</a></li>',
' | <li>', logout_link(), '</li>';
if (WT_USER_GEDCOM_ADMIN) {
echo ' | <li><a href="admin.php" class="link">', i18n::translate('Administration'), '</a></li>';
}
if (WT_USER_CAN_ACCEPT && exists_pending_change()) {
echo ' | <li><a href="javascript:;" onclick="window.open(\'edit_changes.php\',\'_blank\',\'width=600,height=500,resizable=1,scrollbars=1\'); return false;" style="color:red;">', i18n::translate('Pending changes'), '</a></li>';
}
} else {
echo '<li>', login_link(), '</li>';
}
echo '<span class="link"> | ', WT_MenuBar::getFavoritesMenu()->getMenuAsList();
$language_menu=WT_MenuBar::getLanguageMenu();
if ($language_menu) {
echo ' | ', $language_menu->getMenuAsList();
}
global $ALLOW_THEME_DROPDOWN;
if ($ALLOW_THEME_DROPDOWN && get_site_setting('ALLOW_USER_THEMES')) {
echo ' | ', WT_MenuBar::getThemeMenu()->getMenuAsList();
}
echo
'</span> | <form style="display:inline;" action="search.php" method="get">',
'<input type="hidden" name="action" value="general" />',
'<input type="hidden" name="topsearch" value="yes" />',
'<input type="text" name="query" size="20" value="', i18n::translate('Search'), '" onfocus="if (this.value==\'', i18n::translate('Search'), '\') this.value=\'\'; focusHandler();" onblur="if (this.value==\'\') this.value=\'', i18n::translate('Search'), '\';" />',
'</form>',
'</ul></div>';
$menu_items=array(
WT_MenuBar::getGedcomMenu(),
WT_MenuBar::getMyPageMenu(),
WT_MenuBar::getChartsMenu(),
WT_MenuBar::getListsMenu(),
WT_MenuBar::getCalendarMenu(),
WT_MenuBar::getReportsMenu(),
WT_MenuBar::getSearchMenu(),
);
foreach (WT_MenuBar::getModuleMenus() as $menu) {
$menu_items[]=$menu;
}
$menu_items[]=WT_MenuBar::getHelpMenu();
echo
'<div style="float:', WT_CSS_ALIGN, '; clear:', WT_CSS_ALIGN, '; font-size:175%;">',
htmlspecialchars($GEDCOM_TITLE),
'</div>';
}
// Print the menu bar
echo '<div id="topMenu"><ul class="makeMenu">';
foreach ($menu_items as $n=>$menu) {
if ($menu) {
if ($n>0) {
echo ' | ';
}
echo $menu->getMenuAsList();
}
}
unset($menu_items, $n, $menu);
echo '</ul></div></div>';
}
echo '<div id="content">';
|