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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
|
<?php
// Various functions used by the Edit interface
//
// webtrees: Web based Family History software
// Copyright (C) 2013 webtrees development team.
//
// Derived from PhpGedView
// Copyright (C) 2002 to 2009 PGV Development Team. All rights reserved.
//
// 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
//
// $Id$
if (!defined('WT_WEBTREES')) {
header('HTTP/1.0 403 Forbidden');
exit;
}
require_once WT_ROOT.'includes/functions/functions_import.php';
// Create an edit control for inline editing using jeditable
function edit_field_inline($name, $value, $controller=null) {
$html='<span class="editable" id="' . $name . '">' . htmlspecialchars($value) . '</span>';
$js='jQuery("#' . $name . '").editable("' . WT_SERVER_NAME . WT_SCRIPT_PATH . 'save.php", {submit:" ' . /* I18N: button label */ WT_I18N::translate('save') . ' ", style:"inherit", placeholder: "'.WT_I18N::translate('click to edit').'"});';
if ($controller) {
$controller->addInlineJavascript($js);
return $html;
} else {
// For AJAX callbacks
return $html . '<script>' . $js . '</script>';
}
}
// Create a text area for inline editing using jeditable
function edit_text_inline($name, $value, $controller=null) {
$html='<span class="editable" style="white-space:pre-wrap;" id="' . $name . '">' . htmlspecialchars($value) . '</span>';
$js='jQuery("#' . $name . '").editable("' . WT_SERVER_NAME . WT_SCRIPT_PATH . 'save.php", {submit:" ' . WT_I18N::translate('save') . ' ", style:"inherit", placeholder: "'.WT_I18N::translate('click to edit').'", type: "textarea", rows:4, cols:60 });';
if ($controller) {
$controller->addInlineJavascript($js);
return $html;
} else {
// For AJAX callbacks
return $html . '<script>' . $js . '</script>';
}
}
// Create a <select> control for a form
// $name - the ID for the form element
// $values - array of value=>display items
// $empty - if not null, then add an entry ""=>$empty
// $selected - the currently selected item (if any)
// $extra - extra markup for field (e.g. tab key sequence)
function select_edit_control($name, $values, $empty, $selected, $extra='') {
if (is_null($empty)) {
$html='';
} else {
if (empty($selected)) {
$html='<option value="" selected="selected">'.htmlspecialchars($empty).'</option>';
} else {
$html='<option value="">'.htmlspecialchars($empty).'</option>';
}
}
// A completely empty list would be invalid, and break various things
if (empty($values) && empty($html)) {
$html='<option value=""></option>';
}
foreach ($values as $key=>$value) {
if ((string)$key===(string)$selected) { // Because "0" != ""
$html.='<option value="'.htmlspecialchars($key).'" selected="selected" dir="auto">'.htmlspecialchars($value).'</option>';
} else {
$html.='<option value="'.htmlspecialchars($key).'" dir="auto">'.htmlspecialchars($value).'</option>';
}
}
return '<select id="'.$name.'" name="'.$name.'" '.$extra.'>'.$html.'</select>';
}
// An inline-editing version of select_edit_control()
function select_edit_control_inline($name, $values, $empty, $selected, $controller=null) {
if (!is_null($empty)) {
// Push ''=>$empty onto the front of the array, maintaining keys
$tmp=array(''=>htmlspecialchars($empty));
foreach ($values as $key=>$value) {
$tmp[$key]=htmlspecialchars($value);
}
$values=$tmp;
}
$values['selected']=htmlspecialchars($selected);
$html='<span class="editable" id="' . $name . '">' . (array_key_exists($selected, $values) ? $values[$selected] : '') . '</span>';
$js='jQuery("#' . $name . '").editable("' . WT_SERVER_NAME . WT_SCRIPT_PATH . 'save.php", {type:"select", data:' . json_encode($values) . ', submit:" ' . WT_I18N::translate('save') . ' ", style:"inherit", placeholder: "'.WT_I18N::translate('click to edit').'", callback:function(value, settings) {jQuery(this).html(settings.data[value]);} });';
if ($controller) {
$controller->addInlineJavascript($js);
return $html;
} else {
// For AJAX callbacks
return $html . '<script>' . $js . '</script>';
}
}
// Create a set of radio buttons for a form
// $name - the ID for the form element
// $values - array of value=>display items
// $selected - the currently selected item (if any)
// $extra - extra markup for field (e.g. tab key sequence)
function radio_buttons($name, $values, $selected, $extra='') {
$html='';
foreach ($values as $key=>$value) {
$uniqueID = $name.(int)(microtime() * 1000000);
$html.='<input type="radio" name="'.$name.'" id="'.$uniqueID.'" value="'.htmlspecialchars($key).'"';
if ((string)$key===$selected) { // Beware PHP array keys are cast to integers! Cast them back
$html.=' checked';
}
$html.='><label for="'.$uniqueID.'">'.htmlspecialchars($value).'</label>';
}
return $html;
}
// Print an edit control for a Yes/No field
function edit_field_yes_no($name, $selected=false, $extra='') {
return radio_buttons(
$name, array(false=>WT_I18N::translate('no'),true=>WT_I18N::translate('yes')), $selected, $extra
);
}
// An inline-editing version of edit_field_yes_no()
function edit_field_yes_no_inline($name, $selected=false, $controller=null) {
return select_edit_control_inline(
$name, array(true=>WT_I18N::translate('yes'), false=>WT_I18N::translate('no')), null, (int)$selected, $controller
);
}
// Print an edit control for a checkbox
function checkbox($name, $is_checked=false, $extra='') {
return '<input type="checkbox" name="'.$name.'" value="1" '.($is_checked ? 'checked="checked" ' : '').$extra.'>';
}
// Print an edit control for a checkbox, with a hidden field to store one of the two states.
// By default, a checkbox is either set, or not sent.
// This function gives us a three options, set, unset or not sent.
// Useful for dynamically generated forms where we don't know what elements are present.
function two_state_checkbox($name, $is_checked=0, $extra='') {
return
'<input type="hidden" id="'.$name.'" name="'.$name.'" value="'.($is_checked?1:0).'">'.
'<input type="checkbox" name="'.$name.'-GUI-ONLY" value="1"'.
($is_checked ? ' checked="checked"' : '').
' onclick="document.getElementById(\''.$name.'\').value=(this.checked?1:0);" '.$extra.'>';
}
// Print a set of edit controls to select languages
function edit_language_checkboxes($field_prefix, $languages) {
echo '<table>';
$i=0;
foreach (WT_I18N::installed_languages() as $code=>$name) {
$content = '<input type="checkbox" name="'.$field_prefix.$code.'" id="'.$field_prefix.$code.'"';
if (strpos(",{$languages},", ",{$code},")!==false) {
$content .= 'checked="checked"';
}
$content .= '><label for="'.$field_prefix.$code.'"> '.$name.'</label>';
// print in two columns
switch ($i % 3) {
case 0: echo '<tr><td>', $content, '</td>'; break;
case 1: echo '<td>', $content, '</td>'; break;
case 2: echo '<td>', $content, '</td></tr>'; break;
}
$i++;
}
switch ($i % 3) {
case 0: echo '</tr>'; break;
case 1: echo '</td></td></tr>'; break;
case 2: echo '</td></tr>'; break;
}
echo '</table>';
}
// Print an edit control for access level
function edit_field_access_level($name, $selected='', $extra='') {
$ACCESS_LEVEL=array(
WT_PRIV_PUBLIC=>WT_I18N::translate('Show to visitors'),
WT_PRIV_USER =>WT_I18N::translate('Show to members'),
WT_PRIV_NONE =>WT_I18N::translate('Show to managers'),
WT_PRIV_HIDE =>WT_I18N::translate('Hide from everyone')
);
return select_edit_control($name, $ACCESS_LEVEL, null, $selected, $extra);
}
// Print an edit control for a RESN field
function edit_field_resn($name, $selected='', $extra='') {
$RESN=array(
'' =>'',
'none' =>WT_I18N::translate('Show to visitors'), // Not valid GEDCOM, but very useful
'privacy' =>WT_I18N::translate('Show to members'),
'confidential'=>WT_I18N::translate('Show to managers'),
'locked' =>WT_I18N::translate('Only managers can edit')
);
return select_edit_control($name, $RESN, null, $selected, $extra);
}
// Print an edit control for a contact method field
function edit_field_contact($name, $selected='', $extra='') {
// Different ways to contact the users
$CONTACT_METHODS=array(
'messaging' =>WT_I18N::translate('webtrees internal messaging'),
'messaging2'=>WT_I18N::translate('Internal messaging with emails'),
'messaging3'=>WT_I18N::translate('webtrees sends emails with no storage'),
'mailto' =>WT_I18N::translate('Mailto link'),
'none' =>WT_I18N::translate('No contact'),
);
return select_edit_control($name, $CONTACT_METHODS, null, $selected, $extra);
}
function edit_field_contact_inline($name, $selected='', $controller=null) {
// Different ways to contact the users
$CONTACT_METHODS=array(
'messaging' =>WT_I18N::translate('webtrees internal messaging'),
'messaging2'=>WT_I18N::translate('Internal messaging with emails'),
'messaging3'=>WT_I18N::translate('webtrees sends emails with no storage'),
'mailto' =>WT_I18N::translate('Mailto link'),
'none' =>WT_I18N::translate('No contact'),
);
return select_edit_control_inline($name, $CONTACT_METHODS, null, $selected, $controller);
}
// Print an edit control for a language field
function edit_field_language($name, $selected='', $extra='') {
return select_edit_control($name, WT_I18N::installed_languages(), null, $selected, $extra);
}
// An inline-editing version of edit_field_language()
function edit_field_language_inline($name, $selected=false, $controller=null) {
return select_edit_control_inline(
$name, WT_I18N::installed_languages(), null, $selected, $controller
);
}
// Print an edit control for a range of integers
function edit_field_integers($name, $selected='', $min, $max, $extra='') {
$array=array();
for ($i=$min; $i<=$max; ++$i) {
$array[$i]=WT_I18N::number($i);
}
return select_edit_control($name, $array, null, $selected, $extra);
}
// Print an edit control for a username
function edit_field_username($name, $selected='', $extra='') {
$all_users=WT_DB::prepare(
"SELECT user_name, CONCAT_WS(' ', real_name, '-', user_name) FROM `##user` ORDER BY real_name"
)->fetchAssoc();
// The currently selected user may not exist
if ($selected && !array_key_exists($selected, $all_users)) {
$all_users[$selected]=$selected;
}
return select_edit_control($name, $all_users, '-', $selected, $extra);
}
// Print an edit control for a ADOP field
function edit_field_adop($name, $selected='', $extra='', WT_Individual $individual=null) {
return select_edit_control($name, WT_Gedcom_Code_Adop::getValues($individual), null, $selected, $extra);
}
// Print an edit control for a PEDI field
function edit_field_pedi($name, $selected='', $extra='', WT_Individual $individual=null) {
return select_edit_control($name, WT_Gedcom_Code_Pedi::getValues($individual), '', $selected, $extra);
}
// Print an edit control for a NAME TYPE field
function edit_field_name_type($name, $selected='', $extra='', WT_Individual $individual=null) {
return select_edit_control($name, WT_Gedcom_Code_Name::getValues($individual), '', $selected, $extra);
}
// Print an edit control for a RELA field
function edit_field_rela($name, $selected='', $extra='') {
$rela_codes=WT_Gedcom_Code_Rela::getValues();
// The user is allowed to specify values that aren't in the list.
if (!array_key_exists($selected, $rela_codes)) {
$rela_codes[$selected]=$selected;
}
return select_edit_control($name, $rela_codes, '', $selected, $extra);
}
// Remove all links from $gedrec to $xref, and any sub-tags.
function remove_links($gedrec, $xref) {
$gedrec = preg_replace('/\n1 '.WT_REGEX_TAG.' @'.$xref.'@(\n[2-9].*)*/', '', $gedrec);
$gedrec = preg_replace('/\n2 '.WT_REGEX_TAG.' @'.$xref.'@(\n[3-9].*)*/', '', $gedrec);
$gedrec = preg_replace('/\n3 '.WT_REGEX_TAG.' @'.$xref.'@(\n[4-9].*)*/', '', $gedrec);
$gedrec = preg_replace('/\n4 '.WT_REGEX_TAG.' @'.$xref.'@(\n[5-9].*)*/', '', $gedrec);
$gedrec = preg_replace('/\n5 '.WT_REGEX_TAG.' @'.$xref.'@(\n[6-9].*)*/', '', $gedrec);
return $gedrec;
}
// generates javascript code for calendar popup in user's language
function print_calendar_popup($id) {
return
' <a href="#" onclick="cal_toggleDate(\'caldiv'.$id.'\', \''.$id.'\'); return false;" class="icon-button_calendar" title="'.WT_I18N::translate('Select a date').'"></a>'.
'<div id="caldiv'.$id.'" style="position:absolute;visibility:hidden;background-color:white;layer-background-color:white; z-index: 1000;"></div>';
}
function print_addnewmedia_link($element_id) {
return '<a href="#" onclick="pastefield=document.getElementById(\''.$element_id.'\'); window.open(\'addmedia.php?action=showmediaform\', \'_blank\', edit_window_specs); return false;" class="icon-button_addmedia" title="'.WT_I18N::translate('Add a new media object').'"></a>';
}
function print_addnewrepository_link($element_id) {
return '<a href="#" onclick="addnewrepository(document.getElementById(\''.$element_id.'\')); return false;" class="icon-button_addrepository" title="'.WT_I18N::translate('Create Repository').'"></a>';
}
function print_addnewnote_link($element_id) {
return '<a href="#" onclick="addnewnote(document.getElementById(\''.$element_id.'\')); return false;" class="icon-button_addnote" title="'.WT_I18N::translate('Create a new Shared Note').'"></a>';
}
/// Used in GEDFact CENS assistant
function print_addnewnote_assisted_link($element_id, $xref) {
return '<a href="#" onclick="addnewnote_assisted(document.getElementById(\''.$element_id.'\'), \''.$xref.'\'); return false;">'.WT_I18N::translate('Create a new Shared Note using Assistant').'</a>';
}
function print_editnote_link($note_id) {
return '<a href="#" onclick="var win02=window.open(\'edit_interface.php?action=editnote&xref='.$note_id.'\', \'win02\', edit_window_specs);" class="icon-button_note" title="'.WT_I18N::translate('Edit Shared Note').'"></a>';
}
function print_addnewsource_link($element_id) {
return '<a href="#" onclick="addnewsource(document.getElementById(\''.$element_id.'\')); return false;" class="icon-button_addsource" title="'.WT_I18N::translate('Create a new source').'"></a>';
}
/**
* add a new tag input field
*
* called for each fact to be edited on a form.
* Fact level=0 means a new empty form : data are POSTed by name
* else data are POSTed using arrays :
* glevels[] : tag level
* islink[] : tag is a link
* tag[] : tag name
* text[] : tag value
*
* @param string $tag fact record to edit (eg 2 DATE xxxxx)
* @param string $upperlevel optional upper level tag (eg BIRT)
* @param string $label An optional label to echo instead of the default
* @param string $readOnly optional, when "READONLY", fact data can't be changed
* @param string $noClose optional, when "NOCLOSE", final "</td></tr>" won't be printed
* (so that additional text can be printed in the box)
* @param boolean $rowDisplay True to have the row displayed by default, false to hide it by default
*/
function add_simple_tag($tag, $upperlevel='', $label='', $readOnly='', $noClose='', $rowDisplay=true) {
global $MEDIA_DIRECTORY, $tags, $emptyfacts, $main_fact, $TEXT_DIRECTION;
global $NPFX_accept, $SPFX_accept, $NSFX_accept, $FILE_FORM_accept, $upload_count;
global $xref, $linkToID, $bdm, $action, $event_add, $CensDate;
global $QUICK_REQUIRED_FACTS, $QUICK_REQUIRED_FAMFACTS, $PREFER_LEVEL2_SOURCES;
if (substr($tag, 0, strpos($tag, "CENS"))) {
$event_add="census_add";
}
if (substr($tag, 0, strpos($tag, "PLAC"))) {
?>
<script>
function valid_lati_long(field, pos, neg) {
// valid LATI or LONG according to Gedcom standard
// pos (+) : N or E
// neg (-) : S or W
txt=field.value.toUpperCase();
txt=txt.replace(/(^\s*)|(\s*$)/g, ''); // trim
txt=txt.replace(/ /g, ':'); // N12 34 ==> N12.34
txt=txt.replace(/\+/g, ''); // +17.1234 ==> 17.1234
txt=txt.replace(/-/g, neg); // -0.5698 ==> W0.5698
txt=txt.replace(/,/g, '.'); // 0,5698 ==> 0.5698
// 0�34'11 ==> 0:34:11
txt=txt.replace(/\uB0/g, ':'); // �
txt=txt.replace(/\u27/g, ':'); // '
// 0:34:11.2W ==> W0.5698
txt=txt.replace(/^([0-9]+):([0-9]+):([0-9.]+)(.*)/g, function($0, $1, $2, $3, $4) { var n=parseFloat($1); n+=($2/60); n+=($3/3600); n=Math.round(n*1E4)/1E4; return $4+n; });
// 0:34W ==> W0.5667
txt=txt.replace(/^([0-9]+):([0-9]+)(.*)/g, function($0, $1, $2, $3) { var n=parseFloat($1); n+=($2/60); n=Math.round(n*1E4)/1E4; return $3+n; });
// 0.5698W ==> W0.5698
txt=txt.replace(/(.*)([N|S|E|W]+)$/g, '$2$1');
// 17.1234 ==> N17.1234
if (txt!='' && txt.charAt(0)!=neg && txt.charAt(0)!=pos) txt=pos+txt;
field.value = txt;
}
</script>
<?php
}
if (!isset($noClose) && isset($readOnly) && $readOnly=="NOCLOSE") {
$noClose = "NOCLOSE";
$readOnly = '';
}
if (!isset($noClose) || $noClose!="NOCLOSE") $noClose = '';
if (!isset($readOnly) || $readOnly!="READONLY") $readOnly = '';
if (empty($linkToID)) $linkToID = $xref;
$subnamefacts = array("NPFX", "GIVN", "SPFX", "SURN", "NSFX", "_MARNM_SURN");
preg_match('/^(?:(\d+) ('.WT_REGEX_TAG.') ?(.*))/', $tag, $match);
list(, $level, $fact, $value) = $match;
// element name : used to POST data
if ($level==0) {
if ($upperlevel) $element_name=$upperlevel."_".$fact; // ex: BIRT_DATE | DEAT_DATE | ...
else $element_name=$fact; // ex: OCCU
} else $element_name="text[]";
if ($level==1) $main_fact=$fact;
// element id : used by javascript functions
if ($level==0) $element_id=$fact; // ex: NPFX | GIVN ...
else $element_id=$fact.(int)(microtime()*1000000); // ex: SOUR56402
if ($upperlevel) $element_id=$upperlevel."_".$fact; // ex: BIRT_DATE | DEAT_DATE ...
// field value
$islink = (substr($value, 0, 1)=="@" and substr($value, 0, 2)!="@#");
if ($islink) {
$value=trim(trim(substr($tag, strlen($fact)+3)), " @\r");
} else {
$value=trim(substr($tag, strlen($fact)+3));
}
if ($fact=='REPO' || $fact=='SOUR' || $fact=='OBJE' || $fact=='FAMC')
$islink = true;
if ($fact=='SHARED_NOTE_EDIT' || $fact=='SHARED_NOTE') {$islink=1;$fact="NOTE";}
// label
echo "<tr id=\"", $element_id, "_tr\" ";
if ($fact=="MAP" || ($fact=="LATI" || $fact=="LONG") && $value=='') {
echo " style=\"display:none;\"";
}
echo " >";
if (in_array($fact, $subnamefacts) || $fact=="LATI" || $fact=="LONG") {
echo "<td class=\"optionbox wrap width25\">";
} else {
echo "<td class=\"descriptionbox wrap width25\">";
}
if (WT_DEBUG) {
echo $element_name, "<br>";
}
// tag name
if ($label) {
echo $label;
} elseif ($upperlevel) {
echo WT_Gedcom_Tag::getLabel($upperlevel.':'.$fact);
} else {
echo WT_Gedcom_Tag::getLabel($fact);
}
// help link
// If using GEDFact-assistant window
if ($action=="addnewnote_assisted") {
// Do not print on GEDFact Assistant window
} else {
// Not all facts have help text.
switch ($fact) {
case 'FORM':
if ($upperlevel!='OBJE') {
echo help_link($fact);
}
break;
case 'NOTE':
if ($islink) {
echo help_link('edit_add_SHARED_NOTE');
} else {
echo help_link($fact);
}
break;
case 'NAME':
if ($upperlevel!='REPO') {
echo help_link($fact);
}
break;
case 'ASSO':
case '_ASSO': // Some apps (including webtrees) use "2 _ASSO", since "2 ASSO" is not strictly valid GEDCOM
if ($level==1) {
echo help_link('ASSO_1');
} else {
echo help_link('ASSO_2');
}
break;
case 'ADDR':
case 'AGNC':
case 'CAUS':
case 'DATE':
case 'EMAI':
case 'EMAIL':
case 'EMAL':
case '_EMAIL':
case 'FAX':
case 'OBJE':
case 'PAGE':
case 'PEDI':
case 'PHON':
case 'PLAC':
case 'RELA':
case 'RESN':
case 'ROMN':
case 'SEX':
case 'SOUR':
case 'STAT':
case 'SURN':
case 'TEMP':
case 'TEXT':
case 'TIME':
case 'URL':
case '_HEB':
case '_PRIM':
echo help_link($fact);
break;
}
}
// tag level
if ($level>0) {
if ($fact=="TEXT" and $level>1) {
echo "<input type=\"hidden\" name=\"glevels[]\" value=\"", $level-1, "\">";
echo "<input type=\"hidden\" name=\"islink[]\" value=\"0\">";
echo "<input type=\"hidden\" name=\"tag[]\" value=\"DATA\">";
//-- leave data text[] value empty because the following TEXT line will
//--- cause the DATA to be added
echo "<input type=\"hidden\" name=\"text[]\" value=\"\">";
}
echo "<input type=\"hidden\" name=\"glevels[]\" value=\"", $level, "\">";
echo "<input type=\"hidden\" name=\"islink[]\" value=\"", $islink, "\">";
echo "<input type=\"hidden\" name=\"tag[]\" value=\"", $fact, "\">";
}
echo "</td>";
// value
echo "<td class=\"optionbox wrap\">";
if (WT_DEBUG) {
echo $tag, "<br>";
}
// retrieve linked NOTE
if ($fact=="NOTE" && $islink) {
$note1=WT_Note::getInstance($value);
if ($note1) {
$noterec=$note1->getGedcom();
preg_match("/$value/i", $noterec, $notematch);
$value=$notematch[0];
}
}
if (in_array($fact, $emptyfacts) && ($value=='' || $value=='Y' || $value=='y')) {
echo "<input type=\"hidden\" id=\"", $element_id, "\" name=\"", $element_name, "\" value=\"", $value, "\">";
if ($level<=1) {
echo '<input type="checkbox" ';
if ($value) {
echo ' checked="checked"';
}
echo " onclick=\"if (this.checked) ", $element_id, ".value='Y'; else ", $element_id, ".value=''; \">";
echo WT_I18N::translate('yes');
}
} else if ($fact=="TEMP") {
echo select_edit_control($element_name, WT_Gedcom_Code_Temp::templeNames(), WT_I18N::translate('No Temple - Living Ordinance'), $value);
} else if ($fact=="ADOP") {
echo edit_field_adop($element_name, $value, '', WT_Individual::getInstance($xref));
} else if ($fact=="PEDI") {
echo edit_field_pedi($element_name, $value, '', WT_Individual::getInstance($xref));
} else if ($fact=='STAT') {
echo select_edit_control($element_name, WT_Gedcom_Code_Stat::statusNames($upperlevel), '', $value);
} else if ($fact=='RELA') {
echo edit_field_rela($element_name, strtolower($value));
} else if ($fact=='QUAY') {
echo select_edit_control($element_name, WT_Gedcom_Code_Quay::getValues(), '', $value);
} else if ($fact=='_WT_USER') {
echo edit_field_username($element_name, $value);
} else if ($fact=='RESN') {
echo edit_field_resn($element_name, $value);
} else if ($fact=='_PRIM') {
echo '<select id="', $element_id, '" name="', $element_name, '" >';
echo '<option value=""></option>';
echo '<option value="Y"';
if ($value=='Y') echo ' selected="selected"';
echo '>', WT_I18N::translate('yes'), '</option>';
echo '<option value="N"';
if ($value=='N') echo ' selected="selected"';
echo '>', WT_I18N::translate('no'), '</option>';
echo '</select>';
} else if ($fact=='SEX') {
echo '<select id="', $element_id, '" name="', $element_name, '"><option value="M"';
if ($value=='M') echo ' selected="selected"';
echo '>', WT_I18N::translate('Male'), '</option><option value="F"';
if ($value=='F') echo ' selected="selected"';
echo '>', WT_I18N::translate('Female'), '</option><option value="U"';
if ($value=='U' || empty($value)) echo ' selected="selected"';
echo '>', WT_I18N::translate_c('unknown gender', 'Unknown'), '</option></select>';
} else if ($fact == 'TYPE' && $level == '3') {
//-- Build the selector for the Media 'TYPE' Fact
echo '<select name="text[]"><option selected="selected" value="" ></option>';
$selectedValue = strtolower($value);
if (!array_key_exists($selectedValue, WT_Gedcom_Tag::getFileFormTypes())) {
echo '<option selected="selected" value="', htmlspecialchars($value), '" >', htmlspecialchars($value), '</option>';
}
foreach (WT_Gedcom_Tag::getFileFormTypes() as $typeName => $typeValue) {
echo '<option value="', $typeName, '"';
if ($selectedValue == $typeName) {
echo ' selected="selected"';
}
echo '>', $typeValue, '</option>';
}
echo '</select>';
} else if (($fact=='NAME' && $upperlevel!='REPO') || $fact=='_MARNM') {
// Populated in javascript from sub-tags
echo "<input type=\"hidden\" id=\"", $element_id, "\" name=\"", $element_name, "\" onchange=\"updateTextName('", $element_id, "');\" value=\"", htmlspecialchars($value), "\" class=\"", $fact, "\">";
echo '<span id="', $element_id, '_display" dir="auto">', htmlspecialchars($value), '</span>';
echo ' <a href="#edit_name" onclick="convertHidden(\'', $element_id, '\'); return false;" class="icon-edit_indi" title="'.WT_I18N::translate('Edit name').'"></a>';
} else {
// textarea
if ($fact=='TEXT' || $fact=='ADDR' || ($fact=='NOTE' && !$islink)) {
echo "<textarea id=\"", $element_id, "\" name=\"", $element_name, "\" dir=\"auto\">", htmlspecialchars($value), "</textarea><br>";
} else {
// text
// If using GEDFact-assistant window
if ($action=="addnewnote_assisted") {
echo "<input type=\"text\" id=\"", $element_id, "\" name=\"", $element_name, "\" value=\"", htmlspecialchars($value), "\" style=\"width:4.1em;\" dir=\"ltr\"";
} else {
echo "<input type=\"text\" id=\"", $element_id, "\" name=\"", $element_name, "\" value=\"", htmlspecialchars($value), "\" dir=\"ltr\"";
}
echo " class=\"{$fact}\"";
if (in_array($fact, $subnamefacts)) {
echo " onblur=\"updatewholename();\" onkeyup=\"updatewholename();\"";
}
if ($fact=='GIVN') {
echo ' autofocus';
}
if ($fact=="DATE") {
echo " onblur=\"valid_date(this);\" onmouseout=\"valid_date(this);\"";
}
if ($fact=="LATI") {
echo " onblur=\"valid_lati_long(this, 'N', 'S');\" onmouseout=\"valid_lati_long(this, 'N', 'S');\"";
}
if ($fact=="LONG") {
echo " onblur=\"valid_lati_long(this, 'E', 'W');\" onmouseout=\"valid_lati_long(this, 'E', 'W');\"";
}
echo ' ', $readOnly, ">";
}
$tmp_array = array('TYPE','TIME','NOTE','SOUR','REPO','OBJE','ASSO','_ASSO','AGE');
// split PLAC
if ($fact=="PLAC" && $readOnly=='') {
echo "<div id=\"", $element_id, "_pop\" style=\"display: inline;\">";
echo print_specialchar_link($element_id), ' ', print_findplace_link($element_id);
echo '<span onclick="jQuery(\'#', $upperlevel, '_LATI_tr,#', $upperlevel, '_LONG_tr,#INDI_LATI_tr,#INDI_LONG_tr,tr[id^=LATI],tr[id^=LONG]\').toggle(\'fast\'); return false;" class="icon-target" title="', WT_Gedcom_Tag::getLabel('LATI'), ' / ', WT_Gedcom_Tag::getLabel('LONG'), '"></span>';
echo '</div>';
if (array_key_exists('places_assistant', WT_Module::getActiveModules())) {
places_assistant_WT_Module::setup_place_subfields($element_id);
places_assistant_WT_Module::print_place_subfields($element_id);
}
} elseif (!in_array($fact, $tmp_array) && $readOnly=='') {
echo print_specialchar_link($element_id);
}
}
// MARRiage TYPE : hide text field and show a selection list
if ($fact=='TYPE' && $level==2 && $tags[0]=='MARR') {
echo '<script>';
echo "document.getElementById('", $element_id, "').style.display='none'";
echo '</script>';
echo "<select id=\"", $element_id, "_sel\" onchange=\"document.getElementById('", $element_id, "').value=this.value;\" >";
foreach (array("Unknown", "Civil", "Religious", "Partners") as $indexval => $key) {
if ($key=="Unknown") echo "<option value=\"\"";
else echo "<option value=\"", $key, "\"";
$a=strtolower($key);
$b=strtolower($value);
if (@strpos($a, $b)!==false or @strpos($b, $a)!==false) echo " selected=\"selected\"";
$tmp="MARR_".strtoupper($key);
echo ">", WT_Gedcom_Tag::getLabel($tmp), "</option>";
}
echo "</select>";
}
// NAME TYPE : hide text field and show a selection list
else if ($fact=='TYPE' && $level==0) {
$extra = 'onchange="document.getElementById(\''.$element_id.'\').value=this.value;"';
echo edit_field_name_type($element_name, $value, $extra, WT_Individual::getInstance($xref));
echo '<script>';
echo "document.getElementById('", $element_id, "').style.display='none';";
echo '</script>';
}
// popup links
if (!$readOnly) {
switch ($fact) {
case 'DATE':
echo print_calendar_popup($element_id);
// If GEDFact_assistant/_CENS/ module is installed -------------------------------------------------
if ($action=='add' && array_key_exists('GEDFact_assistant', WT_Module::getActiveModules())) {
if (isset($CensDate) && $CensDate=='yes') {
require_once WT_ROOT.WT_MODULES_DIR . 'GEDFact_assistant/_CENS/census_asst_date.php';
}
}
// -------------------------------------------------------------------------------------------------
break;
case 'FAMC':
case 'FAMS':
echo print_findfamily_link($element_id);
break;
case 'ASSO':
case '_ASSO':
echo print_findindi_link($element_id);
break;
case 'FILE':
print_findmedia_link($element_id, "0file");
break;
case 'SOUR':
echo print_findsource_link($element_id), ' ', print_addnewsource_link($element_id);
//-- checkboxes to apply '1 SOUR' to BIRT/MARR/DEAT as '2 SOUR'
if ($level==1) {
echo '<br>';
if ($PREFER_LEVEL2_SOURCES==='0') {
$level1_checked='';
$level2_checked='';
} else if ($PREFER_LEVEL2_SOURCES==='1' || $PREFER_LEVEL2_SOURCES===true) {
$level1_checked='';
$level2_checked=' checked="checked"';
} else {
$level1_checked=' checked="checked"';
$level2_checked='';
}
if (strpos($bdm, 'B')!==false) {
echo ' <input type="checkbox" name="SOUR_INDI" ', $level1_checked, ' value="Y">';
echo WT_I18N::translate('Individual');
if (preg_match_all('/('.WT_REGEX_TAG.')/', $QUICK_REQUIRED_FACTS, $matches)) {
foreach ($matches[1] as $match) {
if (!in_array($match, explode('|', WT_EVENTS_DEAT))) {
echo ' <input type="checkbox" name="SOUR_', $match, '"', $level2_checked, ' value="Y">';
echo WT_Gedcom_Tag::getLabel($match);
}
}
}
}
if (strpos($bdm, 'D')!==false) {
if (preg_match_all('/('.WT_REGEX_TAG.')/', $QUICK_REQUIRED_FACTS, $matches)) {
foreach ($matches[1] as $match) {
if (in_array($match, explode('|', WT_EVENTS_DEAT))) {
echo ' <input type="checkbox" name="SOUR_', $match, '"', $level2_checked, ' value="Y">';
echo WT_Gedcom_Tag::getLabel($match);
}
}
}
}
if (strpos($bdm, 'M')!==false) {
echo ' <input type="checkbox" name="SOUR_FAM" ', $level1_checked, ' value="Y">';
echo WT_I18N::translate('Family');
if (preg_match_all('/('.WT_REGEX_TAG.')/', $QUICK_REQUIRED_FAMFACTS, $matches)) {
foreach ($matches[1] as $match) {
echo ' <input type="checkbox" name="SOUR_', $match, '"', $level2_checked, ' value="Y">';
echo WT_Gedcom_Tag::getLabel($match);
}
}
}
}
break;
case 'REPO':
echo print_findrepository_link($element_id), ' ', print_addnewrepository_link($element_id);
break;
case 'NOTE':
// Shared Notes Icons ========================================
if ($islink) {
// Print regular Shared Note icons ---------------------------
echo ' ', print_findnote_link($element_id), ' ', print_addnewnote_link($element_id);
if ($value) {
echo ' ', print_editnote_link($value);
}
// If GEDFact_assistant/_CENS/ module exists && we are on the INDI page and the action is a GEDFact CENS assistant addition.
// Then show the add Shared note assisted icon, if not ... show regular Shared note icons.
if (($action=='add' || $action=='edit') && $xref && array_key_exists('GEDFact_assistant', WT_Module::getActiveModules())) {
// Check if a CENS event ---------------------------
if ($event_add=='census_add') {
$type_pid=WT_GedcomRecord::getInstance($xref);
if ($type_pid instanceof WT_Individual) {
echo '<br>', print_addnewnote_assisted_link($element_id, $xref);
}
}
}
}
break;
case 'OBJE':
echo print_findmedia_link($element_id, '1media');
if (!$value) {
echo ' ', print_addnewmedia_link($element_id);
$value = 'new';
}
break;
}
echo '<br>';
}
// current value
if ($fact=='DATE') {
$date=new WT_Date($value);
echo $date->Display(false);
}
if ($value && $value!='new' && $islink) {
switch ($fact) {
case 'ASSO':
case 'ASSO':
$tmp = WT_Individual::getInstance($value);
if ($tmp) {
echo ' ', $tmp->getFullname();
}
break;
case 'SOUR':
$tmp = WT_Source::getInstance($value);
if ($tmp) {
echo ' ', $tmp->getFullname();
}
break;
case 'NOTE':
$tmp = WT_Note::getInstance($value);
if ($tmp) {
echo ' ', $tmp->getFullname();
}
break;
case 'OBJE':
$tmp = WT_Media::getInstance($value);
if ($tmp) {
echo ' ', $tmp->getFullname();
}
break;
case 'REPO':
$tmp = WT_Repository::getInstance($value);
if ($tmp) {
echo ' ', $tmp->getFullname();
}
break;
}
}
// pastable values
if ($readOnly=='') {
if ($fact=='FORM' && $upperlevel=='OBJE') print_autopaste_link($element_id, $FILE_FORM_accept);
}
if ($noClose != 'NOCLOSE') echo '</td></tr>';
return $element_id;
}
// prints collapsable fields to add ASSO/RELA, SOUR, OBJE ...
function print_add_layer($tag, $level=2) {
global $FULL_SOURCES;
if ($tag=='OBJE' && get_gedcom_setting(WT_GED_ID, 'MEDIA_UPLOAD') < WT_USER_ACCESS_LEVEL) {
return;
}
if ($tag=="SOUR") {
//-- Add new source to fact
echo "<a href=\"#\" onclick=\"return expand_layer('newsource');\"><i id=\"newsource_img\" class=\"icon-plus\"></i> ", WT_I18N::translate('Add a new source citation'), "</a>";
echo help_link('edit_add_SOUR');
echo "<br>";
echo "<div id=\"newsource\" style=\"display: none;\">";
echo "<table class=\"facts_table\">";
// 2 SOUR
$source = "SOUR @";
add_simple_tag("$level $source");
// 3 PAGE
$page = "PAGE";
add_simple_tag(($level+1)." $page");
// 3 DATA
// 4 TEXT
$text = "TEXT";
add_simple_tag(($level+2)." $text");
if ($FULL_SOURCES) {
// 4 DATE
add_simple_tag(($level+2)." DATE", '', WT_Gedcom_Tag::getLabel('DATA:DATE'));
// 3 QUAY
add_simple_tag(($level+1)." QUAY");
}
// 3 OBJE
add_simple_tag(($level+1)." OBJE");
// 3 SHARED_NOTE
add_simple_tag(($level+1)." SHARED_NOTE");
echo "</table></div>";
}
if ($tag=="ASSO" || $tag=="ASSO2") {
//-- Add a new ASSOciate
if ($tag=="ASSO") {
echo "<a href=\"#\" onclick=\"return expand_layer('newasso');\"><i id=\"newasso_img\" class=\"icon-plus\"></i> ", WT_I18N::translate('Add a new associate'), "</a>";
echo help_link('edit_add_ASSO');
echo "<br>";
echo "<div id=\"newasso\" style=\"display: none;\">";
} else {
echo "<a href=\"#\" onclick=\"return expand_layer('newasso2');\"><i id=\"newasso2_img\" class=\"icon-plus\"></i> ", WT_I18N::translate('Add a new associate'), "</a>";
echo help_link('edit_add_ASSO');
echo "<br>";
echo "<div id=\"newasso2\" style=\"display: none;\">";
}
echo "<table class=\"facts_table\">";
// 2 ASSO
add_simple_tag(($level)." ASSO @");
// 3 RELA
add_simple_tag(($level+1)." RELA");
// 3 NOTE
add_simple_tag(($level+1)." NOTE");
// 3 SHARED_NOTE
add_simple_tag(($level+1)." SHARED_NOTE");
echo "</table></div>";
}
if ($tag=="NOTE") {
//-- Retrieve existing note or add new note to fact
$text = '';
echo "<a href=\"#\" onclick=\"return expand_layer('newnote');\"><i id=\"newnote_img\" class=\"icon-plus\"></i> ", WT_I18N::translate('Add a new note'), "</a>";
echo help_link('edit_add_NOTE');
echo "<br>";
echo "<div id=\"newnote\" style=\"display: none;\">";
echo "<table class=\"facts_table\">";
// 2 NOTE
add_simple_tag(($level)." NOTE ".$text);
echo "</table></div>";
}
if ($tag=="SHARED_NOTE") {
//-- Retrieve existing shared note or add new shared note to fact
$text = '';
echo "<a href=\"#\" onclick=\"return expand_layer('newshared_note');\"><i id=\"newshared_note_img\" class=\"icon-plus\"></i> ", WT_I18N::translate('Add a new shared note'), "</a>";
echo help_link('edit_add_SHARED_NOTE');
echo "<br>";
echo "<div id=\"newshared_note\" style=\"display: none;\">";
echo "<table class=\"facts_table\">";
// 2 SHARED NOTE
add_simple_tag(($level)." SHARED_NOTE ");
echo "</table></div>";
}
if ($tag=="OBJE") {
//-- Add new obje to fact
echo "<a href=\"#\" onclick=\"return expand_layer('newobje');\"><i id=\"newobje_img\" class=\"icon-plus\"></i> ", WT_I18N::translate('Add a new media object'), "</a>";
echo help_link('OBJE');
echo "<br>";
echo "<div id=\"newobje\" style=\"display: none;\">";
echo "<table class=\"facts_table\">";
add_simple_tag($level." OBJE");
echo "</table></div>";
}
if ($tag=="RESN") {
//-- Retrieve existing resn or add new resn to fact
$text = '';
echo "<a href=\"#\" onclick=\"return expand_layer('newresn');\"><i id=\"newresn_img\" class=\"icon-plus\"></i> ", WT_I18N::translate('Add a new restriction'), "</a>";
echo help_link('RESN');
echo "<br>";
echo "<div id=\"newresn\" style=\"display: none;\">";
echo "<table class=\"facts_table\">";
// 2 RESN
add_simple_tag(($level)." RESN ".$text);
echo "</table></div>";
}
}
// Add some empty tags to create a new fact
function addSimpleTags($fact) {
global $ADVANCED_PLAC_FACTS;
// For new individuals, these facts default to "Y"
if ($fact=='MARR' /*|| $fact=='BIRT'*/) {
add_simple_tag("0 {$fact} Y");
} else {
add_simple_tag("0 {$fact}");
}
add_simple_tag("0 DATE", $fact, WT_Gedcom_Tag::getLabel("{$fact}:DATE"));
add_simple_tag("0 PLAC", $fact, WT_Gedcom_Tag::getLabel("{$fact}:PLAC"));
if (preg_match_all('/('.WT_REGEX_TAG.')/', $ADVANCED_PLAC_FACTS, $match)) {
foreach ($match[1] as $tag) {
add_simple_tag("0 {$tag}", $fact, WT_Gedcom_Tag::getLabel("{$fact}:PLAC:{$tag}"));
}
}
add_simple_tag("0 MAP", $fact);
add_simple_tag("0 LATI", $fact);
add_simple_tag("0 LONG", $fact);
}
// Assemble the pieces of a newly created record into gedcom
function addNewName() {
global $ADVANCED_NAME_FACTS;
$gedrec="\n1 NAME ".safe_POST('NAME', WT_REGEX_UNSAFE, '//');
$tags=array('NPFX', 'GIVN', 'SPFX', 'SURN', 'NSFX');
if (preg_match_all('/('.WT_REGEX_TAG.')/', $ADVANCED_NAME_FACTS, $match)) {
$tags=array_merge($tags, $match[1]);
}
// Paternal and Polish and Lithuanian surname traditions can also create a _MARNM
$SURNAME_TRADITION=get_gedcom_setting(WT_GED_ID, 'SURNAME_TRADITION');
if ($SURNAME_TRADITION=='paternal' || $SURNAME_TRADITION=='polish' || $SURNAME_TRADITION=='lithuanian') {
$tags[]='_MARNM';
}
foreach (array_unique($tags) as $tag) {
$TAG=safe_POST($tag, WT_REGEX_UNSAFE);
if ($TAG) {
$gedrec.="\n2 {$tag} {$TAG}";
}
}
return $gedrec;
}
function addNewSex() {
switch (safe_POST('SEX', '[MF]', 'U')) {
case 'M':
return "\n1 SEX M";
case 'F':
return "\n1 SEX F";
default:
return "\n1 SEX U";
}
}
function addNewFact($fact) {
global $tagSOUR, $ADVANCED_PLAC_FACTS;
$FACT=safe_POST($fact, WT_REGEX_UNSAFE);
$DATE=safe_POST("{$fact}_DATE", WT_REGEX_UNSAFE);
$PLAC=safe_POST("{$fact}_PLAC", WT_REGEX_UNSAFE);
if ($DATE || $PLAC || $FACT && $FACT!='Y') {
if ($FACT && $FACT!='Y') {
$gedrec="\n1 {$fact} {$FACT}";
} else {
$gedrec="\n1 {$fact}";
}
if ($DATE) {
$gedrec.="\n2 DATE {$DATE}";
}
if ($PLAC) {
$gedrec.="\n2 PLAC {$PLAC}";
if (preg_match_all('/('.WT_REGEX_TAG.')/', $ADVANCED_PLAC_FACTS, $match)) {
foreach ($match[1] as $tag) {
$TAG=safe_POST("{$fact}_{$tag}", WT_REGEX_UNSAFE);
if ($TAG) {
$gedrec.="\n3 {$tag} {$TAG}";
}
}
}
$LATI=safe_POST("{$fact}_LATI", WT_REGEX_UNSAFE);
$LONG=safe_POST("{$fact}_LONG", WT_REGEX_UNSAFE);
if ($LATI || $LONG) {
$gedrec.="\n3 MAP\n4 LATI {$LATI}\n4 LONG {$LONG}";
}
}
if (safe_POST_bool("SOUR_{$fact}")) {
return updateSOUR($gedrec, 2);
} else {
return $gedrec;
}
} elseif ($FACT=='Y') {
if (safe_POST_bool("SOUR_{$fact}")) {
return updateSOUR("\n1 {$fact} Y", 2);
} else {
return "\n1 {$fact} Y";
}
} else {
return '';
}
}
/**
* This function splits the $glevels, $tag, $islink, and $text arrays so that the
* entries associated with a SOUR record are separate from everything else.
*
* Input arrays:
* - $glevels[] - an array of the gedcom level for each line that was edited
* - $tag[] - an array of the tags for each gedcom line that was edited
* - $islink[] - an array of 1 or 0 values to indicate when the text is a link element
* - $text[] - an array of the text data for each line
*
* Output arrays:
* ** For the SOUR record:
* - $glevelsSOUR[] - an array of the gedcom level for each line that was edited
* - $tagSOUR[] - an array of the tags for each gedcom line that was edited
* - $islinkSOUR[] - an array of 1 or 0 values to indicate when the text is a link element
* - $textSOUR[] - an array of the text data for each line
* ** For the remaining records:
* - $glevelsRest[] - an array of the gedcom level for each line that was edited
* - $tagRest[] - an array of the tags for each gedcom line that was edited
* - $islinkRest[] - an array of 1 or 0 values to indicate when the text is a link element
* - $textRest[] - an array of the text data for each line
*
*/
function splitSOUR() {
global $glevels, $tag, $islink, $text;
global $glevelsSOUR, $tagSOUR, $islinkSOUR, $textSOUR;
global $glevelsRest, $tagRest, $islinkRest, $textRest;
$glevelsSOUR = array();
$tagSOUR = array();
$islinkSOUR = array();
$textSOUR = array();
$glevelsRest = array();
$tagRest = array();
$islinkRest = array();
$textRest = array();
$inSOUR = false;
for ($i=0; $i<count($glevels); $i++) {
if ($inSOUR) {
if ($levelSOUR<$glevels[$i]) {
$dest = "S";
} else {
$inSOUR = false;
$dest = "R";
}
} else {
if ($tag[$i]=="SOUR") {
$inSOUR = true;
$levelSOUR = $glevels[$i];
$dest = "S";
} else {
$dest = "R";
}
}
if ($dest=="S") {
$glevelsSOUR[] = $glevels[$i];
$tagSOUR[] = $tag[$i];
$islinkSOUR[] = $islink[$i];
$textSOUR[] = $text[$i];
} else {
$glevelsRest[] = $glevels[$i];
$tagRest[] = $tag[$i];
$islinkRest[] = $islink[$i];
$textRest[] = $text[$i];
}
}
}
/**
* Add new GEDCOM lines from the $xxxSOUR interface update arrays, which
* were produced by the splitSOUR() function.
*
* See the handle_updates() function for details.
*
*/
function updateSOUR($inputRec, $levelOverride="no") {
global $glevels, $tag, $islink, $text;
global $glevelsSOUR, $tagSOUR, $islinkSOUR, $textSOUR;
global $glevelsRest, $tagRest, $islinkRest, $textRest;
if (count($tagSOUR)==0) return $inputRec; // No update required
// Save original interface update arrays before replacing them with the xxxSOUR ones
$glevelsSave = $glevels;
$tagSave = $tag;
$islinkSave = $islink;
$textSave = $text;
$glevels = $glevelsSOUR;
$tag = $tagSOUR;
$islink = $islinkSOUR;
$text = $textSOUR;
$myRecord = handle_updates($inputRec, $levelOverride); // Now do the update
// Restore the original interface update arrays (just in case ...)
$glevels = $glevelsSave;
$tag = $tagSave;
$islink = $islinkSave;
$text = $textSave;
return $myRecord;
}
/**
* Add new GEDCOM lines from the $xxxRest interface update arrays, which
* were produced by the splitSOUR() function.
*
* See the handle_updates() function for details.
*
*/
function updateRest($inputRec, $levelOverride="no") {
global $glevels, $tag, $islink, $text;
global $glevelsSOUR, $tagSOUR, $islinkSOUR, $textSOUR;
global $glevelsRest, $tagRest, $islinkRest, $textRest;
if (count($tagRest)==0) return $inputRec; // No update required
// Save original interface update arrays before replacing them with the xxxRest ones
$glevelsSave = $glevels;
$tagSave = $tag;
$islinkSave = $islink;
$textSave = $text;
$glevels = $glevelsRest;
$tag = $tagRest;
$islink = $islinkRest;
$text = $textRest;
$myRecord = handle_updates($inputRec, $levelOverride); // Now do the update
// Restore the original interface update arrays (just in case ...)
$glevels = $glevelsSave;
$tag = $tagSave;
$islink = $islinkSave;
$text = $textSave;
return $myRecord;
}
/**
* Add new gedcom lines from interface update arrays
* The edit_interface and add_simple_tag function produce the following
* arrays incoming from the $_POST form
* - $glevels[] - an array of the gedcom level for each line that was edited
* - $tag[] - an array of the tags for each gedcom line that was edited
* - $islink[] - an array of 1 or 0 values to tell whether the text is a link element and should be surrounded by @@
* - $text[] - an array of the text data for each line
* With these arrays you can recreate the gedcom lines like this
* <code>$glevel[0].' '.$tag[0].' '.$text[0]</code>
* There will be an index in each of these arrays for each line of the gedcom
* fact that is being edited.
* If the $text[] array is empty for the given line, then it means that the
* user removed that line during editing or that the line is supposed to be
* empty (1 DEAT, 1 BIRT) for example. To know if the line should be removed
* there is a section of code that looks ahead to the next lines to see if there
* are sub lines. For example we don't want to remove the 1 DEAT line if it has
* a 2 PLAC or 2 DATE line following it. If there are no sub lines, then the line
* can be safely removed.
* @param string $newged the new gedcom record to add the lines to
* @param int $levelOverride Override GEDCOM level specified in $glevels[0]
* @return string The updated gedcom record
*/
function handle_updates($newged, $levelOverride="no") {
global $glevels, $islink, $tag, $uploaded_files, $text, $NOTE, $WORD_WRAPPED_NOTES;
if ($levelOverride=="no" || count($glevels)==0) $levelAdjust = 0;
else $levelAdjust = $levelOverride - $glevels[0];
for ($j=0; $j<count($glevels); $j++) {
// Look for empty SOUR reference with non-empty sub-records.
// This can happen when the SOUR entry is deleted but its sub-records
// were incorrectly left intact.
// The sub-records should be deleted.
if ($tag[$j]=="SOUR" && ($text[$j]=="@@" || $text[$j]=='')) {
$text[$j] = '';
$k = $j+1;
while (($k<count($glevels))&&($glevels[$k]>$glevels[$j])) {
$text[$k] = '';
$k++;
}
}
if (trim($text[$j])!='') {
$pass = true;
}
else {
//-- for facts with empty values they must have sub records
//-- this section checks if they have subrecords
$k=$j+1;
$pass=false;
while (($k<count($glevels))&&($glevels[$k]>$glevels[$j])) {
if ($text[$k]!='') {
if (($tag[$j]!="OBJE")||($tag[$k]=="FILE")) {
$pass=true;
break;
}
}
if (($tag[$k]=="FILE")&&(count($uploaded_files)>0)) {
$filename = array_shift($uploaded_files);
if (!empty($filename)) {
$text[$k] = $filename;
$pass=true;
break;
}
}
$k++;
}
}
//-- if the value is not empty or it has sub lines
//--- then write the line to the gedcom record
//if ((($text[trim($j)]!='')||($pass==true)) && (strlen($text[$j]) > 0)) {
//-- we have to let some emtpy text lines pass through... (DEAT, BIRT, etc)
if ($pass==true) {
$newline = $glevels[$j]+$levelAdjust.' '.$tag[$j];
//-- check and translate the incoming dates
if ($tag[$j]=="DATE" && $text[$j]!='') {
}
// echo $newline;
if ($text[$j]!='') {
if ($islink[$j]) $newline .= " @".$text[$j]."@";
else $newline .= ' '.$text[$j];
}
$newged .= "\n".str_replace("\n", "\n" . (1 + substr($newline, 0, 1)) . ' CONT ', $newline);
}
}
return $newged;
}
/**
* builds the form for adding new facts
* @param string $fact the new fact we are adding
*/
function create_add_form($fact) {
global $tags, $FULL_SOURCES, $emptyfacts;
$tags = array();
// GEDFact_assistant ================================================
if ($fact=="CENS") {
global $TEXT_DIRECTION, $CensDate;
$CensDate="yes";
}
// ==================================================================
// handle MARRiage TYPE
if (substr($fact, 0, 5)=="MARR_") {
$tags[0] = "MARR";
add_simple_tag("1 MARR");
insert_missing_subtags($fact);
} else {
$tags[0] = $fact;
if ($fact=='_UID') {
$fact.=' '.uuid();
}
// These new level 1 tags need to be turned into links
if (in_array($fact, array('ASSO'))) {
$fact.=' @';
}
if (in_array($fact, $emptyfacts)) {
add_simple_tag('1 '.$fact.' Y');
} else {
add_simple_tag('1 '.$fact);
}
insert_missing_subtags($tags[0]);
//-- handle the special SOURce case for level 1 sources [ 1759246 ]
if ($fact=="SOUR") {
add_simple_tag("2 PAGE");
add_simple_tag("3 TEXT");
if ($FULL_SOURCES) {
add_simple_tag("3 DATE", '', WT_Gedcom_Tag::getLabel('DATA:DATE'));
add_simple_tag("2 QUAY");
}
}
}
}
// Create a form to edit a WT_Fact object
function create_edit_form(WT_GedcomRecord $record, WT_Fact $fact) {
global $WORD_WRAPPED_NOTES, $ADVANCED_PLAC_FACTS, $date_and_time, $FULL_SOURCES;
global $tags;
$pid = $record->getXref();
$tags=array();
$gedlines = explode("\n", $fact->getGedcom());
$linenum = 0;
$fields = explode(' ', $gedlines[$linenum]);
$glevel = $fields[0];
$level = $glevel;
$type = $fact->getTag();
$parent = $fact->getParent();
$level0type = $parent::RECORD_TYPE;
$level1type = $type;
// GEDFact_assistant ================================================
if ($type=="CENS") {
global $TEXT_DIRECTION, $CensDate;
$CensDate="yes";
}
// ==================================================================
if (count($fields)>2) {
$ct = preg_match("/@.*@/", $fields[2]);
$levellink = $ct > 0;
} else {
$levellink = false;
}
$i = $linenum;
$inSource = false;
$levelSource = 0;
$add_date = true;
// List of tags we would expect at the next level
// NB add_missing_subtags() already takes care of the simple cases
// where a level 1 tag is missing a level 2 tag. Here we only need to
// handle the more complicated cases.
$expected_subtags=array(
'SOUR'=>array('PAGE', 'DATA'),
'DATA'=>array('TEXT'),
'PLAC'=>array('MAP'),
'MAP' =>array('LATI', 'LONG')
);
if ($FULL_SOURCES) {
$expected_subtags['SOUR'][]='QUAY';
$expected_subtags['DATA'][]='DATE';
}
if (preg_match_all('/('.WT_REGEX_TAG.')/', $ADVANCED_PLAC_FACTS, $match)) {
$expected_subtags['PLAC']=array_merge($match[1], $expected_subtags['PLAC']);
}
$stack=array(0=>$level0type);
// Loop on existing tags :
while (true) {
// Keep track of our hierarchy, e.g. 1=>BIRT, 2=>PLAC, 3=>FONE
$stack[(int)$level]=$type;
// Merge them together, e.g. BIRT:PLAC:FONE
$label=implode(':', array_slice($stack, 1, $level));
$text = '';
for ($j=2; $j<count($fields); $j++) {
if ($j>2) $text .= ' ';
$text .= $fields[$j];
}
$text = rtrim($text);
while (($i+1<count($gedlines))&&(preg_match("/".($level+1)." CONT ?(.*)/", $gedlines[$i+1], $cmatch)>0)) {
$text.="\n".$cmatch[1];
$i++;
}
if ($type=="SOUR") {
$inSource = true;
$levelSource = $level;
} elseif ($levelSource>=$level) {
$inSource = false;
}
if ($type!="DATA" && $type!="CONT") {
$tags[]=$type;
$person = WT_Individual::getInstance($pid);
$subrecord = $level.' '.$type.' '.$text;
if ($inSource && $type=="DATE") {
add_simple_tag($subrecord, '', WT_Gedcom_Tag::getLabel($label, $person));
} elseif (!$inSource && $type=="DATE") {
add_simple_tag($subrecord, $level1type, WT_Gedcom_Tag::getLabel($label, $person));
$add_date = false;
} elseif ($type=='STAT') {
add_simple_tag($subrecord, $level1type, WT_Gedcom_Tag::getLabel($label, $person));
} elseif ($level0type=='REPO') {
$repo = WT_Repository::getInstance($pid);
add_simple_tag($subrecord, $level0type, WT_Gedcom_Tag::getLabel($label, $repo));
} else {
add_simple_tag($subrecord, $level0type, WT_Gedcom_Tag::getLabel($label, $person));
}
}
// Get a list of tags present at the next level
$subtags=array();
for ($ii=$i+1; isset($gedlines[$ii]) && preg_match('/^\s*(\d+)\s+(\S+)/', $gedlines[$ii], $mm) && $mm[1]>$level; ++$ii)
if ($mm[1]==$level+1)
$subtags[]=$mm[2];
// Insert missing tags
if (!empty($expected_subtags[$type])) {
foreach ($expected_subtags[$type] as $subtag) {
if (!in_array($subtag, $subtags)) {
if (!$inSource || $subtag!="DATA") {
add_simple_tag(($level+1).' '.$subtag, '', WT_Gedcom_Tag::getLabel("{$label}:{$subtag}"));
}
if (!empty($expected_subtags[$subtag])) {
foreach ($expected_subtags[$subtag] as $subsubtag) {
add_simple_tag(($level+2).' '.$subsubtag, '', WT_Gedcom_Tag::getLabel("{$label}:{$subtag}:{$subsubtag}"));
}
}
}
}
}
// Awkward special cases
if ($level==2 && $type=='DATE' && in_array($level1type, $date_and_time) && !in_array('TIME', $subtags)) {
add_simple_tag("3 TIME"); // TIME is NOT a valid 5.5.1 tag
}
if ($level==2 && $type=='STAT' && WT_Gedcom_Code_Temp::isTagLDS($level1type) && !in_array('DATE', $subtags)) {
add_simple_tag("3 DATE", '', WT_Gedcom_Tag::getLabel('STAT:DATE'));
}
$i++;
if (isset($gedlines[$i])) {
$fields = explode(' ', $gedlines[$i]);
$level = $fields[0];
if (isset($fields[1])) {
$type = trim($fields[1]);
} else {
$level = 0;
}
} else {
$level = 0;
}
if ($level<=$glevel) break;
}
if ($level1type!='_PRIM') {
insert_missing_subtags($level1type, $add_date);
}
return $level1type;
}
/**
* Populates the global $tags array with any missing sub-tags.
* @param string $level1tag the type of the level 1 gedcom record
*/
function insert_missing_subtags($level1tag, $add_date=false) {
global $tags, $date_and_time, $level2_tags, $ADVANCED_PLAC_FACTS, $ADVANCED_NAME_FACTS;
global $nondatefacts, $nonplacfacts;
// handle MARRiage TYPE
$type_val = '';
if (substr($level1tag, 0, 5)=='MARR_') {
$type_val = substr($level1tag, 5);
$level1tag = 'MARR';
}
foreach ($level2_tags as $key=>$value) {
if ($key=='DATE' && in_array($level1tag, $nondatefacts) || $key=='PLAC' && in_array($level1tag, $nonplacfacts)) {
continue;
}
if (in_array($level1tag, $value) && !in_array($key, $tags)) {
if ($key=='TYPE') {
add_simple_tag('2 TYPE '.$type_val, $level1tag);
} elseif ($level1tag=='_TODO' && $key=='DATE') {
add_simple_tag('2 '.$key.' '.strtoupper(date('d M Y')), $level1tag);
} elseif ($level1tag=='_TODO' && $key=='_WT_USER') {
add_simple_tag('2 '.$key.' '.WT_USER_NAME, $level1tag);
} else if ($level1tag=='TITL' && strstr($ADVANCED_NAME_FACTS, $key)!==false) {
add_simple_tag('2 '.$key, $level1tag);
} else if ($level1tag=='NAME' && strstr($ADVANCED_NAME_FACTS, $key)!==false) {
add_simple_tag('2 '.$key, $level1tag);
} else if ($level1tag!='TITL' && $level1tag!='NAME') {
add_simple_tag('2 '.$key, $level1tag);
}
switch ($key) { // Add level 3/4 tags as appropriate
case 'PLAC':
if (preg_match_all('/('.WT_REGEX_TAG.')/', $ADVANCED_PLAC_FACTS, $match)) {
foreach ($match[1] as $tag) {
add_simple_tag("3 $tag", '', WT_Gedcom_Tag::getLabel("{$level1tag}:PLAC:{$tag}"));
}
}
add_simple_tag('3 MAP');
add_simple_tag('4 LATI');
add_simple_tag('4 LONG');
break;
case 'FILE':
add_simple_tag('3 FORM');
break;
case 'EVEN':
add_simple_tag('3 DATE');
add_simple_tag('3 PLAC');
break;
case 'STAT':
if (WT_Gedcom_Code_Temp::isTagLDS($level1tag)) {
add_simple_tag('3 DATE', '', WT_Gedcom_Tag::getLabel('STAT:DATE'));
}
break;
case 'DATE':
if (in_array($level1tag, $date_and_time))
add_simple_tag('3 TIME'); // TIME is NOT a valid 5.5.1 tag
break;
case 'HUSB':
case 'WIFE':
add_simple_tag('3 AGE');
break;
case 'FAMC':
if ($level1tag=='ADOP')
add_simple_tag('3 ADOP BOTH');
break;
}
} elseif ($key=='DATE' && $add_date) {
add_simple_tag('2 DATE', $level1tag, WT_Gedcom_Tag::getLabel("{$level1tag}:DATE"));
}
}
// Do something (anything!) with unrecognised custom tags
if (substr($level1tag, 0, 1)=='_' && $level1tag!='_UID' && $level1tag!='_TODO')
foreach (array('DATE', 'PLAC', 'ADDR', 'AGNC', 'TYPE', 'AGE') as $tag)
if (!in_array($tag, $tags)) {
add_simple_tag("2 {$tag}");
if ($tag=='PLAC') {
if (preg_match_all('/('.WT_REGEX_TAG.')/', $ADVANCED_PLAC_FACTS, $match)) {
foreach ($match[1] as $tag) {
add_simple_tag("3 $tag", '', WT_Gedcom_Tag::getLabel("{$level1tag}:PLAC:{$tag}"));
}
}
add_simple_tag('3 MAP');
add_simple_tag('4 LATI');
add_simple_tag('4 LONG');
}
}
}
|