summaryrefslogtreecommitdiff
path: root/modules_v3/GEDFact_assistant/_CENS/census_1_ctrl.php
blob: 017b641760e8677651fdbe877d0288eb82498577 (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
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
<?php
namespace Webtrees;

/**
 * webtrees: online genealogy
 * Copyright (C) 2015 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/>.
 */

global $summary, $censyear, $censdate;

$censdate = new Date('31 MAR 1901');
$censyear = $censdate->date1->y;
$ctry     = 'UK';

// === Set $married to "Not married as we only want the Birth name here" ===
$married = -1;

$nam = $person->getAllNames();
if ($person->getDeathYear() == 0) {
	$DeathYr = '';
} else {
	$DeathYr = $person->getDeathYear();
}
if ($person->getBirthYear() == 0) {
	$BirthYr = '';
} else {
	$BirthYr = $person->getBirthYear();
}
$fulln = rtrim($nam[0]['givn'], '*') . " " . $nam[0]['surname'];
$fulln = str_replace("@N.N.", "(" . I18N::translate('unknown') . ")", $fulln);
$fulln = str_replace("@P.N.", "(" . I18N::translate('unknown') . ")", $fulln);
$wholename = $fulln;

echo '<script src="', WT_STATIC_URL, WT_MODULES_DIR, 'GEDFact_assistant/_CENS/js/dynamicoptionlist.js"></script>';
echo '<script src="', WT_STATIC_URL, WT_MODULES_DIR, 'GEDFact_assistant/_CENS/js/date.js"></script>';

echo '<script>';
echo 'var TheCenYear = opener.document.getElementById("setyear").value;';
echo 'var TheCenCtry = opener.document.getElementById("setctry").value;';
echo '</script>';

// Header of assistant window =====================================================
echo '<div class="cens_header">';
echo '<div class="cens_header_left">';
echo I18N::translate('Head of household:');
echo ' ', $wholename;
echo '</div>';
if ($summary) {
	echo '<div class="cens_header_right">', $summary, '</div>';
}
echo '</div>';

//-- Census & Source Information Area =============================================
echo '<div class="cens_container">';
echo '<span >';
require WT_ROOT . WT_MODULES_DIR . 'GEDFact_assistant/_CENS/census_2_source_input.php';
echo '</span>';
//-- Proposed Census Text Area ================================================
echo '<span>';
require WT_ROOT . WT_MODULES_DIR . 'GEDFact_assistant/_CENS/census_4_text.php';
echo '</span>';
echo '</div>';

//-- Search  and Add Family Members Area ==========================================
echo '<div class="optionbox cens_search" style="overflow:-moz-scrollbars-horizontal;overflow-x:hidden;overflow-y:scroll;">';
?><!--[if lte IE 7]><style>.cens_search{margin-top:-0.7em;}</style><![EndIf]--><?php
require WT_ROOT . WT_MODULES_DIR . 'GEDFact_assistant/_CENS/census_3_search_add.php';
echo '</div>';

//-- Census Text Input Area =======================================================
?>
<div class="optionbox cens_textinput">
	<div class="cens_textinput_left">
		<input type="button" value="<?php echo I18N::translate('Add/insert a blank row'); ?>" onclick="insertRowToTable('', '', '', '', '', '', '', '', 'Age', '', '', '', '', '', '');">
	</div>
	<div class="cens_textinput_right">
		<?php echo I18N::translate('Add'); ?>
		<input  type="radio" name="totallyrad" value="0" checked>
	</div>
	<?php
	//-- Census Add Rows Area =========================================================
	echo '<div class="cens_addrows">';
	require WT_ROOT . WT_MODULES_DIR . 'GEDFact_assistant/_CENS/census_5_input.php';
	echo '</div>';
	?>
</div>
<script>window.onLoad = initDynamicOptionLists();</script>