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
|
<?php
use Fisharebest\Webtrees\Auth;
use Fisharebest\Webtrees\Contracts\UserInterface;
use Fisharebest\Webtrees\Date;
use Fisharebest\Webtrees\Http\RequestHandlers\ControlPanel;
use Fisharebest\Webtrees\Http\RequestHandlers\ManageTrees;
use Fisharebest\Webtrees\Http\RequestHandlers\TreePreferencesAction;
use Fisharebest\Webtrees\I18N;
use Fisharebest\Webtrees\Individual;
use Fisharebest\Webtrees\Registry;
use Fisharebest\Webtrees\Tree;
use Illuminate\Support\Collection;
/**
* @var array<string,string> $all_family_facts
* @var array<string,string> $all_individual_facts
* @var array<string,string> $all_surname_traditions
* @var array<int,string> $calendar_formats
* @var string $data_folder
* @var array<int,string> $formats
* @var Date $french_calendar_end
* @var Date $french_calendar_start
* @var Date $gregorian_calendar_start
* @var Collection<int,UserInterface> $members
* @var Individual|null $pedigree_individual
* @var array<int,string> $privacy_options
* @var array<int,string> $relatives_events
* @var array<int,string> $source_types
* @var array<string,string> $surname_list_styles
* @var string $title
* @var Tree $tree
* @var int $tree_count
*/
?>
<?= view('components/breadcrumbs', ['links' => [route(ControlPanel::class) => I18N::translate('Control panel'), route(ManageTrees::class, ['tree' => $tree->name()]) => I18N::translate('Manage family trees'), $title]]) ?>
<h1><?= $title ?></h1>
<form method="post" action="<?= e(route(TreePreferencesAction::class, ['tree' => $tree->name()])) ?>" class="form-horizontal">
<?= csrf_field() ?>
<h2><?= I18N::translate('General') ?></h2>
<!-- TREE TITLE -->
<div class="row mb-3">
<label class="col-sm-3 col-form-label" for="title">
<?= I18N::translate('Family tree title') ?>
</label>
<div class="col-sm-9">
<input
class="form-control"
dir="auto"
id="title"
maxlength="255"
name="title"
required
type="text"
value="<?= e($tree->getPreference('title')) ?>"
>
</div>
</div>
<!-- TREE URL / FILENAME -->
<?php if (Auth::isAdmin()) : ?>
<div class="row mb-3">
<label class="col-sm-3 col-form-label" for="gedcom">
<?= I18N::translate('URL') ?>
</label>
<div class="col-sm-9">
<div class="input-group" dir="ltr">
<span class="input-group-text" dir="ltr">
<?= e(explode('{tree}', rawurldecode(route('example')))[0]) ?>
</span>
<input class="form-control" dir="ltr" id="gedcom" maxlength="255" name="gedcom" required="required" type="text" value="<?= e($tree->name()) ?>">
<span class="input-group-text" dir="ltr">
<?= e(explode('{tree}', rawurldecode(route('example')))[1]) ?>
</span>
</div>
<div class="form-text">
<?= /* I18N: help text for family tree / GEDCOM file names */ I18N::translate('Avoid spaces and punctuation. A family name might be a good choice.') ?>
</div>
</div>
</div>
<?php endif ?>
<!-- PEDIGREE_ROOT_ID -->
<div class="row mb-3">
<label class="col-sm-3 col-form-label" for="PEDIGREE_ROOT_ID">
<?= /* I18N: A configuration setting */ I18N::translate('Default individual') ?>
</label>
<div class="col-sm-9">
<?= view('components/select-individual', ['name' => 'PEDIGREE_ROOT_ID', 'individual' => $pedigree_individual, 'tree' => $tree]) ?>
<div class="form-text">
<?= /* I18N: Help text for the “Default individual” configuration setting */ I18N::translate('This individual will be selected by default when viewing charts and reports.') ?>
</div>
</div>
</div>
<!-- CALENDAR_FORMAT -->
<fieldset class="row mb-3">
<legend class="col-form-label col-sm-3">
<?= /* I18N: A configuration setting */ I18N::translate('Calendar conversion') ?>
<label class="visually-hidden" for="CALENDAR_FORMAT0">
<?= /* I18N: A configuration setting */ I18N::translate('Calendar conversion') ?> 1
</label>
<label class="visually-hidden" for="CALENDAR_FORMAT1">
<?= /* I18N: A configuration setting */ I18N::translate('Calendar conversion') ?> 2
</label>
</legend>
<div class="col-sm-9">
<div class="row">
<div class="col-sm-6">
<?= view('components/select', ['name' => 'CALENDAR_FORMAT0', 'selected' => $calendar_formats[0], 'options' => ['none' => I18N::translate('No calendar conversion')] + Registry::calendarDateFactory()->supportedCalendars()]) ?>
</div>
<div class="col-sm-6">
<?= view('components/select', ['name' => 'CALENDAR_FORMAT1', 'selected' => $calendar_formats[1], 'options' => ['none' => I18N::translate('No calendar conversion')] + Registry::calendarDateFactory()->supportedCalendars()]) ?>
</div>
</div>
<div class="form-text">
<?= /* I18N: Help text for the “Calendar conversion” configuration setting */ I18N::translate('Different calendar systems are used in different parts of the world, and many other calendar systems have been used in the past. Where possible, you should enter dates using the calendar in which the event was originally recorded. You can then specify a conversion, to show these dates in a more familiar calendar. If you regularly use two calendars, you can specify two conversions and dates will be converted to both the selected calendars.') ?>
</div>
<div class="form-text">
<?= /* I18N: Help text for the “Calendar conversion” configuration setting */ I18N::translate('Dates are only converted if they are valid for the calendar. For example, only dates between %1$s and %2$s will be converted to the French calendar and only dates after %3$s will be converted to the Gregorian calendar.', $french_calendar_start->display(), $french_calendar_end->display(), $gregorian_calendar_start->display()) ?>
</div>
<div class="form-text">
<?= /* I18N: Help text for the “Calendar conversion” configuration setting */ I18N::translate('In some calendars, days start at midnight. In other calendars, days start at sunset. The conversion process does not take account of the time, so for any event that occurs between sunset and midnight, the conversion between these types of calendar will be one day out.') ?>
</div>
</div>
</fieldset>
<!-- GENERATE_UIDS -->
<fieldset class="row mb-3">
<legend class="col-form-label col-sm-3">
<?= /* I18N: A configuration setting */ I18N::translate('Add unique identifiers') ?>
</legend>
<div class="col-sm-9">
<?= view('components/radios-inline', ['name' => 'GENERATE_UIDS', 'options' => [I18N::translate('no'), I18N::translate('yes')], 'selected' => (int) $tree->getPreference('GENERATE_UIDS')]) ?>
<div class="form-text">
<?= /* I18N: Help text for the “Add unique identifiers” configuration setting */ I18N::translate('Unique identifiers allow the same record to be found in different family trees and in different systems. They will be added whenever records are created or updated. If you do not want unique identifiers to be displayed, you can hide them using the privacy rules.') ?>
</div>
</div>
</fieldset>
<h2><?= I18N::translate('Contact information') ?></h2>
<!-- CONTACT_USER_ID -->
<div class="row mb-3">
<label class="col-sm-3 col-form-label" for="CONTACT_USER_ID">
<?= /* I18N: A configuration setting */ I18N::translate('Genealogy contact') ?>
</label>
<div class="col-sm-9">
<select id="CONTACT_USER_ID" name="CONTACT_USER_ID" class="form-control">
<option value=""> </option>
<?php foreach ($members as $member) : ?>
<option value="<?= $member->id() ?>" <?= (int) $tree->getPreference('CONTACT_USER_ID') === $member->id() ? 'selected' : '' ?>>
<?= e($member->realName()) ?> - <?= e($member->userName()) ?>
</option>
<?php endforeach ?>
</select>
<div class="form-text">
<?= /* I18N: Help text for the “Genealogy contact” configuration setting */ I18N::translate('The individual to contact about the genealogy data on this website.') ?>
</div>
</div>
</div>
<!-- WEBMASTER_USER_ID -->
<div class="row mb-3">
<label class="col-sm-3 col-form-label" for="WEBMASTER_USER_ID">
<?= /* I18N: A configuration setting */ I18N::translate('Technical help contact') ?>
</label>
<div class="col-sm-9">
<select id="WEBMASTER_USER_ID" name="WEBMASTER_USER_ID" class="form-control">
<option value=""> </option>
<?php foreach ($members as $member) : ?>
<option value="<?= $member->id() ?>" <?= (int) $tree->getPreference('WEBMASTER_USER_ID') === $member->id() ? 'selected' : '' ?>>
<?= e($member->realName()) ?> - <?= e($member->userName()) ?>
</option>
<?php endforeach ?>
</select>
<div class="form-text">
<?= /* I18N: Help text for the “Technical help contact” configuration setting */ I18N::translate('The individual to be contacted about technical questions or errors encountered on your website.') ?>
</div>
</div>
</div>
<h2><?= I18N::translate('Website') ?></h2>
<!-- META_TITLE -->
<div class="row mb-3">
<label class="col-sm-3 col-form-label" for="META_TITLE">
<?= /* I18N: A configuration setting */ I18N::translate('Add to TITLE header tag') ?>
</label>
<div class="col-sm-9">
<input
class="form-control"
id="META_TITLE"
maxlength="255"
name="META_TITLE"
type="text"
value="<?= e($tree->getPreference('META_TITLE')) ?>"
>
<div class="form-text">
<?= /* I18N: Help text for the “Add to TITLE header tag” configuration setting */ I18N::translate('This text will be appended to each page title. It will be shown in the browser’s title bar, bookmarks, etc.') ?>
</div>
</div>
</div>
<!-- META_DESCRIPTION -->
<div class="row mb-3">
<label class="col-sm-3 col-form-label" for="META_DESCRIPTION">
<?= /* I18N: A configuration setting */ I18N::translate('Description META tag') ?>
</label>
<div class="col-sm-9">
<input
class="form-control"
id="META_DESCRIPTION"
maxlength="255"
name="META_DESCRIPTION"
type="text"
value="<?= e($tree->getPreference('META_DESCRIPTION')) ?>"
>
<div class="form-text">
<?= /* I18N: Help text for the “Description META tag” configuration setting */ I18N::translate('Search engines may use this description of your site in their search results.') ?>
</div>
</div>
</div>
<?php if (Auth::isAdmin()) : ?>
<h2><?= I18N::translate('Media folders') ?></h2>
<!-- MEDIA_DIRECTORY -->
<div class="row mb-3">
<label class="col-sm-3 col-form-label" for="MEDIA_DIRECTORY">
<?= /* I18N: A configuration setting */ I18N::translate('Media folder') ?>
</label>
<div class="col-sm-9">
<div class="input-group" dir="ltr">
<span class="input-group-text" dir="ltr">
<?= e($data_folder) ?>
</span>
<input class="form-control" dir="ltr" id="MEDIA_DIRECTORY" maxlength="255" name="MEDIA_DIRECTORY" type="text" value="<?= e($tree->getPreference('MEDIA_DIRECTORY')) ?>">
</div>
<div class="form-text">
<?= /* I18N: Help text for the “Media folder” configuration setting */ I18N::translate('This folder will be used to store the media files for this family tree.') ?>
<?= /* I18N: Help text for the “Media folder” configuration setting */ I18N::translate('If you select a different folder, you must also move any media files from the existing folder to the new one.') ?>
<?= /* I18N: Help text for the “Media folder” configuration setting */ I18N::translate('If two family trees use the same media folder, then they will be able to share media files. If they use different media folders, then their media files will be kept separate.') ?>
</div>
</div>
</div>
<?php endif ?>
<h2><?= I18N::translate('Media files') ?></h2>
<!-- MEDIA_UPLOAD -->
<div class="row mb-3">
<label class="col-sm-3 col-form-label" for="MEDIA_UPLOAD">
<?= /* I18N: A configuration setting */ I18N::translate('Who can upload new media files') ?>
</label>
<div class="col-sm-9">
<?= view('components/select', ['name' => 'MEDIA_UPLOAD', 'selected' => $tree->getPreference('MEDIA_UPLOAD'), 'options' => $privacy_options]) ?>
<div class="form-text">
<?= /* I18N: Help text for the “Who can upload new media files” configuration setting */ I18N::translate('If you are concerned that users might upload inappropriate images, you can restrict media uploads to managers only.') ?>
</div>
</div>
</div>
<!-- SHOW_MEDIA_DOWNLOAD -->
<fieldset class="row mb-3">
<legend class="col-form-label col-sm-3">
<?= /* I18N: A configuration setting */ I18N::translate('Show a download link in the media viewer') ?>
</legend>
<div class="col-sm-9">
<?= view('components/select', ['name' => 'SHOW_MEDIA_DOWNLOAD', 'selected' => $tree->getPreference('SHOW_MEDIA_DOWNLOAD'), 'options' => Auth::accessLevelNames()]) ?>
<div class="form-text">
<?= /* I18N: Help text for the “Show a download link in the media viewer” configuration setting */ I18N::translate('This option will make it easier for users to download images.') ?>
</div>
</div>
</fieldset>
<h2><?= I18N::translate('Thumbnail images') ?></h2>
<!-- SHOW_HIGHLIGHT_IMAGES -->
<fieldset class="row mb-3">
<legend class="col-form-label col-sm-3">
<?= I18N::translate('Thumbnail images') ?>
</legend>
<div class="col-sm-9">
<?= view('components/radios-inline', ['name' => 'SHOW_HIGHLIGHT_IMAGES', 'options' => [I18N::translate('hide'), I18N::translate('show')], 'selected' => (int) $tree->getPreference('SHOW_HIGHLIGHT_IMAGES')]) ?>
<div class="form-text">
<?= I18N::translate('Show thumbnail images in charts and family groups.') ?>
</div>
</div>
</fieldset>
<!-- USE_SILHOUETTE -->
<fieldset class="row mb-3">
<legend class="col-form-label col-sm-3">
<?= /* I18N: A configuration setting */ I18N::translate('Use silhouettes') ?>
</legend>
<div class="col-sm-9">
<?= view('components/radios-inline', ['name' => 'USE_SILHOUETTE', 'options' => [I18N::translate('no'), I18N::translate('yes')], 'selected' => (int) $tree->getPreference('USE_SILHOUETTE')]) ?>
<div class="form-text">
<?= /* I18N: Help text for the “Use silhouettes” configuration setting */ I18N::translate('Use silhouette images when no highlighted image for that individual has been specified. The images used are specific to the gender of the individual in question.') ?>
</div>
</div>
</fieldset>
<h2><?= I18N::translate('Watermarks') ?></h2>
<!-- SHOW_NO_WATERMARK -->
<div class="row mb-3">
<label class="col-sm-3 col-form-label" for="SHOW_NO_WATERMARK">
<?= I18N::translate('Images without watermarks') ?>
</label>
<div class="col-sm-9">
<?= view('components/select', ['name' => 'SHOW_NO_WATERMARK', 'selected' => $tree->getPreference('SHOW_NO_WATERMARK'), 'options' => Auth::accessLevelNames()]) ?>
<div class="form-text">
<?= /* I18N: Help text for the “Images without watermarks” configuration setting */ I18N::translate('Watermarks are optional and normally shown just to visitors.') ?>
</div>
</div>
</div>
<h2><?= I18N::translate('Lists') ?></h2>
<!-- SURNAME_LIST_STYLE -->
<div class="row mb-3">
<label class="col-sm-3 col-form-label" for="SURNAME_LIST_STYLE">
<?= I18N::translate('Surname list style') ?>
</label>
<div class="col-sm-9">
<?= view('components/select', ['name' => 'SURNAME_LIST_STYLE', 'selected' => $tree->getPreference('SURNAME_LIST_STYLE'), 'options' => $surname_list_styles]) ?>
<div class="form-text">
</div>
</div>
</div>
<!-- SUBLIST_TRIGGER_I -->
<div class="row mb-3">
<label class="col-sm-3 col-form-label" for="SUBLIST_TRIGGER_I">
<?= /* I18N: A configuration setting */ I18N::translate('Maximum number of surnames on individual list') ?>
</label>
<div class="col-sm-9">
<input
class="form-control"
id="SUBLIST_TRIGGER_I"
maxlength="5"
name="SUBLIST_TRIGGER_I"
required
type="text"
value="<?= e($tree->getPreference('SUBLIST_TRIGGER_I')) ?>"
>
<div class="form-text">
<?= /* I18N: Help text for the “Maximum number of surnames on individual list” configuration setting */ I18N::translate('Long lists of individuals with the same surname can be broken into smaller sub-lists according to the first letter of the individual’s given name.<br><br>This option determines when sub-listing of surnames will occur. To disable sub-listing completely, set this option to zero.') ?>
</div>
</div>
</div>
<!-- SHOW_EST_LIST_DATES -->
<fieldset class="row mb-3">
<legend class="col-form-label col-sm-3">
<?= /* I18N: A configuration setting */ I18N::translate('Estimated dates for birth and death') ?>
</legend>
<div class="col-sm-9">
<?= view('components/radios-inline', ['name' => 'SHOW_EST_LIST_DATES', 'options' => [I18N::translate('hide'), I18N::translate('show')], 'selected' => (int) $tree->getPreference('SHOW_EST_LIST_DATES')]) ?>
<div class="form-text">
<?= /* I18N: Help text for the “Estimated dates for birth and death” configuration setting */ I18N::translate('This option controls whether or not to show estimated dates for birth and death instead of leaving blanks on individual lists and charts for individuals whose dates are not known.') ?>
</div>
</div>
</fieldset>
<!-- SHOW_LAST_CHANGE -->
<fieldset class="row mb-3">
<legend class="col-form-label col-sm-3">
<?= I18N::translate('The date and time of the last update') ?>
</legend>
<div class="col-sm-9">
<?= view('components/radios-inline', ['name' => 'SHOW_LAST_CHANGE', 'options' => [I18N::translate('hide'), I18N::translate('show')], 'selected' => (int) $tree->getPreference('SHOW_LAST_CHANGE')]) ?>
<div class="form-text">
</div>
</div>
</fieldset>
<h2><?= I18N::translate('Charts') ?></h2>
<!-- SHOW_PARENTS_AGE -->
<fieldset class="row mb-3">
<legend class="col-form-label col-sm-3">
<?= /* I18N: A configuration setting */ I18N::translate('Age of parents next to child’s birthdate') ?>
</legend>
<div class="col-sm-9">
<?= view('components/radios-inline', ['name' => 'SHOW_PARENTS_AGE', 'options' => [I18N::translate('hide'), I18N::translate('show')], 'selected' => (int) $tree->getPreference('SHOW_PARENTS_AGE')]) ?>
<div class="form-text">
<?= /* I18N: Help text for the “Age of parents next to child’s birthdate” configuration setting */ I18N::translate('This option controls whether or not to show age of father and mother next to child’s birthdate on charts.') ?>
</div>
</div>
</fieldset>
<!-- CHART_BOX_TAGS -->
<div class="row mb-3">
<label class="col-sm-3 col-form-label" for="CHART_BOX_TAGS">
<?= I18N::translate('Other facts to show in charts') ?>
</label>
<div class="col-sm-9">
<div class="input-group">
<?= view('components/select', ['name' => 'CHART_BOX_TAGS[]', 'id' => 'CHART_BOX_TAGS', 'selected' => explode(',', $tree->getPreference('CHART_BOX_TAGS')), 'options' => $all_individual_facts, 'class' => 'tom-select']) ?>
</div>
<div class="form-text">
<?= /* I18N: Help text for the “Other facts to show in charts” configuration setting */ I18N::translate('This should be a comma or space separated list of facts, in addition to birth and death, that you want to appear in chart boxes such as the pedigree chart. This list requires you to use fact tags as defined in the GEDCOM 5.5.1 standard. For example, if you wanted the occupation to show up in the box, you would add “OCCU” to this field.') ?>
</div>
</div>
</div>
<h2><?= I18N::translate('Individual pages') ?></h2>
<!-- SHOW_RELATIVES_EVENTS -->
<fieldset class="row mb-3">
<legend class="col-form-label col-sm-3">
<?= I18N::translate('Show the events of close relatives on the individual page') ?>
</legend>
<div class="col-sm-3">
<div class="form-check">
<label for="_BIRT_GCHI">
<input name="SHOW_RELATIVES_EVENTS[]" type="checkbox" id="_BIRT_GCHI" value="_BIRT_GCHI" <?= in_array('_BIRT_GCHI', $relatives_events, true) ? 'checked' : '' ?>>
<?= I18N::translate('Birth of a grandchild') ?>
</label>
</div>
<div class="form-check">
<label for="_BIRT_CHIL">
<input name="SHOW_RELATIVES_EVENTS[]" type="checkbox" id="_BIRT_CHIL" value="_BIRT_CHIL" <?= in_array('_BIRT_CHIL', $relatives_events, true) ? 'checked' : '' ?>>
<?= I18N::translate('Birth of a child') ?>
</label>
</div>
<div class="form-check">
<label for="_BIRT_SIBL">
<input name="SHOW_RELATIVES_EVENTS[]" type="checkbox" id="_BIRT_SIBL" value="_BIRT_SIBL" <?= in_array('_BIRT_SIBL', $relatives_events, true) ? 'checked' : '' ?>>
<?= I18N::translate('Birth of a sibling') ?>
</label>
</div>
</div>
<div class="col-sm-3">
<div class="form-check">
<label for="_MARR_GCHI">
<input name="SHOW_RELATIVES_EVENTS[]" type="checkbox" id="_MARR_GCHI" value="_MARR_GCHI" <?= in_array('_MARR_GCHI', $relatives_events, true) ? 'checked' : '' ?>>
<?= I18N::translate('Marriage of a grandchild') ?>
</label>
</div>
<div class="form-check">
<label for="_MARR_CHIL">
<input name="SHOW_RELATIVES_EVENTS[]" type="checkbox" id="_MARR_CHIL" value="_MARR_CHIL" <?= in_array('_MARR_CHIL', $relatives_events, true) ? 'checked' : '' ?>>
<?= I18N::translate('Marriage of a child') ?>
</label>
</div>
<div class="form-check">
<label for="_MARR_SIBL">
<input name="SHOW_RELATIVES_EVENTS[]" type="checkbox" id="_MARR_SIBL" value="_MARR_SIBL" <?= in_array('_MARR_SIBL', $relatives_events, true) ? 'checked' : '' ?>>
<?= I18N::translate('Marriage of a sibling') ?>
</label>
</div>
<div class="form-check">
<label for="_MARR_PARE">
<input name="SHOW_RELATIVES_EVENTS[]" type="checkbox" id="_MARR_PARE" value="_MARR_PARE" <?= in_array('_MARR_PARE', $relatives_events, true) ? 'checked' : '' ?>>
<?= I18N::translate('Marriage of a parent') ?>
</label>
</div>
</div>
<div class="col-sm-3">
<div class="form-check">
<label for="_DEAT_GCHI">
<input name="SHOW_RELATIVES_EVENTS[]" type="checkbox" id="_DEAT_GCHI" value="_DEAT_GCHI" <?= in_array('_DEAT_GCHI', $relatives_events, true) ? 'checked' : '' ?>>
<?= I18N::translate('Death of a grandchild') ?>
</label>
</div>
<div class="form-check">
<label for="_DEAT_CHIL">
<input name="SHOW_RELATIVES_EVENTS[]" type="checkbox" id="_DEAT_CHIL" value="_DEAT_CHIL" <?= in_array('_DEAT_CHIL', $relatives_events, true) ? 'checked' : '' ?>>
<?= I18N::translate('Death of a child') ?>
</label>
</div>
<div class="form-check">
<label for="_DEAT_SIBL">
<input name="SHOW_RELATIVES_EVENTS[]" type="checkbox" id="_DEAT_SIBL" value="_DEAT_SIBL" <?= in_array('_DEAT_SIBL', $relatives_events, true) ? 'checked' : '' ?>>
<?= I18N::translate('Death of a sibling') ?>
</label>
</div>
<div class="form-check">
<label for="_DEAT_PARE">
<input name="SHOW_RELATIVES_EVENTS[]" type="checkbox" id="_DEAT_PARE" value="_DEAT_PARE" <?= in_array('_DEAT_PARE', $relatives_events, true) ? 'checked' : '' ?>>
<?= I18N::translate('Death of a parent') ?>
</label>
</div>
<div class="form-check">
<label for="_DEAT_SPOU">
<input name="SHOW_RELATIVES_EVENTS[]" type="checkbox" id="_DEAT_SPOU" value="_DEAT_SPOU" <?= in_array('_DEAT_SPOU', $relatives_events, true) ? 'checked' : '' ?>>
<?= I18N::translate('Death of a spouse') ?>
</label>
</div>
<div class="form-check">
<label for="_DEAT_GPAR">
<input name="SHOW_RELATIVES_EVENTS[]" type="checkbox" id="_DEAT_GPAR" value="_DEAT_GPAR" <?= in_array('_DEAT_GPAR', $relatives_events, true) ? 'checked' : '' ?>>
<?= I18N::translate('Death of a grandparent') ?>
</label>
</div>
</div>
</fieldset>
<!-- SHOW_FACT_ICONS -->
<fieldset class="row mb-3">
<legend class="col-form-label col-sm-3">
<?= /* I18N: A configuration setting */ I18N::translate('Fact icons') ?>
</legend>
<div class="col-sm-9">
<?= view('components/radios-inline', ['name' => 'SHOW_FACT_ICONS', 'options' => [I18N::translate('hide'), I18N::translate('show')], 'selected' => (int) $tree->getPreference('SHOW_FACT_ICONS')]) ?>
<div class="form-text">
<?= /* I18N: Help text for the “Fact icons” configuration setting */ I18N::translate('Some themes can display icons on the “Facts and events” tab.') ?>
</div>
</div>
</fieldset>
<!-- EXPAND_NOTES -->
<fieldset class="row mb-3">
<legend class="col-form-label col-sm-3">
<?= /* I18N: A configuration setting */ I18N::translate('Automatically expand notes') ?>
</legend>
<div class="col-sm-9">
<?= view('components/radios-inline', ['name' => 'EXPAND_NOTES', 'options' => [I18N::translate('no'), I18N::translate('yes')], 'selected' => (int) $tree->getPreference('EXPAND_NOTES')]) ?>
<div class="form-text">
<?= /* I18N: Help text for the “Automatically expand notes” configuration setting */
I18N::translate('This option controls whether or not to automatically display content of a <i>Note</i> record on the Individual page.') ?>
</div>
</div>
</fieldset>
<!-- EXPAND_SOURCES -->
<fieldset class="row mb-3">
<legend class="col-form-label col-sm-3">
<?= /* I18N: A configuration setting */ I18N::translate('Automatically expand sources') ?>
</legend>
<div class="col-sm-9">
<?= view('components/radios-inline', ['name' => 'EXPAND_SOURCES', 'options' => [I18N::translate('no'), I18N::translate('yes')], 'selected' => (int) $tree->getPreference('EXPAND_SOURCES')]) ?>
<div class="form-text">
<?= /* I18N: Help text for the “Automatically expand sources” configuration setting */
I18N::translate('This option controls whether or not to automatically display content of a <i>Source</i> record on the Individual page.') ?>
</div>
</div>
</fieldset>
<h2><?= I18N::translate('Places') ?></h2>
<!-- SHOW_PEDIGREE_PLACES -->
<fieldset class="row mb-3">
<legend class="col-form-label col-sm-3">
<?= /* I18N: A configuration setting */ I18N::translate('Abbreviate place names') ?>
<label class="visually-hidden" for="SHOW_PEDIGREE_PLACES_SUFFIX">
<?= /* I18N: A configuration setting */ I18N::translate('Abbreviate place names') ?>
<?= I18N::translate('first') ?> / <?= I18N::translate('last') ?>
</label>
<label class="visually-hidden" for="SHOW_PEDIGREE_PLACES">
<?= /* I18N: A configuration setting */ I18N::translate('Abbreviate place names') ?>
</label>
</legend>
<div class="col-sm-9">
<?= /* I18N: The placeholders are edit controls. Show the [first/last] [1/2/3/4/5] parts of a place name */ I18N::translate(
'Show the %1$s %2$s parts of a place name.',
view('components/select', ['name' => 'SHOW_PEDIGREE_PLACES_SUFFIX', 'selected' => $tree->getPreference('SHOW_PEDIGREE_PLACES_SUFFIX'), 'options' => ['0' => I18N::translateContext('Show the [first/last] [N] parts of a place name.', 'first'), '1' => I18N::translateContext('Show the [first/last] [N] parts of a place name.', 'last')]]),
view('components/select-number', ['name' => 'SHOW_PEDIGREE_PLACES', 'selected' => $tree->getPreference('SHOW_PEDIGREE_PLACES'), 'options' => range(1, 9)])
) ?>
<div class="form-text">
<?= /* I18N: Help text for the “Abbreviate place names” configuration setting */ I18N::translate('Place names are frequently too long to fit on charts, lists, etc. They can be abbreviated by showing just the first few parts of the name, such as <i>village, county</i>, or the last few part of it, such as <i>region, country</i>.') ?>
</div>
</div>
</fieldset>
<h2><?= I18N::translate('Text') ?></h2>
<!-- FORMAT_TEXT -->
<fieldset class="row mb-3">
<legend class="col-form-label col-sm-3">
<?= /* I18N: A configuration setting */ I18N::translate('Format text and notes') ?>
</legend>
<div class="col-sm-9">
<?= view('components/radios-inline', ['name' => 'FORMAT_TEXT', 'options' => $formats, 'selected' => $tree->getPreference('FORMAT_TEXT')]) ?>
<div class="form-text">
<?= /* I18N: Help text for the “Format text and notes” configuration setting */ I18N::translate('To ensure compatibility with other genealogy applications, notes, text, and transcripts should be recorded in simple, unformatted text. However, formatting is often desirable to aid presentation, comprehension, etc.') ?>
<br>
<?= /* I18N: Help text for the “Format text and notes” configuration setting */ I18N::translate('Markdown is a simple system of formatting, used on websites such as Wikipedia. It uses unobtrusive punctuation characters to create headings and sub-headings, bold and italic text, lists, tables, etc.') ?>
</div>
</div>
</fieldset>
<h2><?= I18N::translate('General') ?></h2>
<!-- SHOW_GEDCOM_RECORD -->
<fieldset class="row mb-3">
<legend class="col-form-label col-sm-3">
<?= /* I18N: A configuration setting */ I18N::translate('Allow users to see raw GEDCOM records') ?>
</legend>
<div class="col-sm-9">
<?= view('components/radios-inline', ['name' => 'SHOW_GEDCOM_RECORD', 'options' => [I18N::translate('no'), I18N::translate('yes')], 'selected' => (int) $tree->getPreference('SHOW_GEDCOM_RECORD')]) ?>
<div class="form-text">
<?= /* I18N: Help text for the “Allow users to see raw GEDCOM records” configuration setting */ I18N::translate('Setting this to <b>Yes</b> will place links on individuals, sources, and families to let users bring up another window containing the raw data taken right out of the GEDCOM file.') ?>
</div>
</div>
</fieldset>
<!-- HIDE_GEDCOM_ERRORS -->
<fieldset class="row mb-3">
<legend class="col-form-label col-sm-3">
<?= /* I18N: A configuration setting */ I18N::translate('GEDCOM errors') ?>
</legend>
<div class="col-sm-9">
<?= view('components/radios-inline', ['name' => 'HIDE_GEDCOM_ERRORS', 'options' => [I18N::translate('hide'), I18N::translate('show')], 'selected' => (int) $tree->getPreference('HIDE_GEDCOM_ERRORS')]) ?>
<div class="form-text">
<?= /* I18N: Help text for the “GEDCOM errors” configuration setting */ I18N::translate('Many genealogy programs create GEDCOM files with custom tags, and webtrees understands most of them. When unrecognized tags are found, this option lets you choose whether to ignore them or display a warning message.') ?>
</div>
</div>
</fieldset>
<!-- SHOW_COUNTER -->
<fieldset class="row mb-3">
<legend class="col-form-label col-sm-3">
<?= /* I18N: A configuration setting */ I18N::translate('Hit counters') ?>
</legend>
<div class="col-sm-9">
<?= view('components/radios-inline', ['name' => 'SHOW_COUNTER', 'options' => [I18N::translate('hide'), I18N::translate('show')], 'selected' => (int) $tree->getPreference('SHOW_COUNTER')]) ?>
<div class="form-text">
<?= /* I18N: Help text for the “Hit counters” configuration setting */ I18N::translate('Some pages can display the number of times that they have been visited.') ?>
</div>
</div>
</fieldset>
<h2><?= /* I18N: Options for editing */ I18N::translate('Edit preferences') ?></h2>
<h2><?= I18N::translate('Facts for individual records') ?></h2>
<!-- QUICK_REQUIRED_FACTS -->
<div class="row mb-3">
<label class="col-sm-3 col-form-label" for="QUICK_REQUIRED_FACTS">
<?= I18N::translate('Facts for new individuals') ?>
</label>
<div class="col-sm-9">
<?= view('components/select', ['name' => 'QUICK_REQUIRED_FACTS[]', 'id' => 'QUICK_REQUIRED_FACTS', 'selected' => explode(',', $tree->getPreference('QUICK_REQUIRED_FACTS')), 'options' => $all_individual_facts, 'class' => 'tom-select']) ?>
</div>
</div>
<!-- INDI_FACTS_QUICK -->
<div class="row mb-3">
<label class="col-sm-3 col-form-label" for="INDI_FACTS_QUICK">
<?= I18N::translate('Quick individual facts') ?>
</label>
<div class="col-sm-9">
<?= view('components/select', ['name' => 'INDI_FACTS_QUICK[]', 'id' => 'INDI_FACTS_QUICK', 'selected' => explode(',', $tree->getPreference('INDI_FACTS_QUICK')), 'options' => $all_individual_facts, 'class' => 'tom-select']) ?>
<div class="form-text">
<?= /* I18N: Help text for the “Quick individual facts” configuration setting */ I18N::translate('The most common individual facts and events are listed separately, so that they can be added more easily.') ?>
</div>
</div>
</div>
<h2><?= I18N::translate('Facts for family records') ?></h2>
<!-- QUICK_REQUIRED_FAMFACTS -->
<div class="row mb-3">
<label class="col-sm-3 col-form-label" for="QUICK_REQUIRED_FAMFACTS">
<?= I18N::translate('Facts for new families') ?>
</label>
<div class="col-sm-9">
<?= view('components/select', ['name' => 'QUICK_REQUIRED_FAMFACTS[]', 'id' => 'QUICK_REQUIRED_FAMFACTS', 'selected' => explode(',', $tree->getPreference('QUICK_REQUIRED_FAMFACTS')), 'options' => $all_family_facts, 'class' => 'tom-select']) ?>
</div>
</div>
<!-- FAM_FACTS_QUICK -->
<div class="row mb-3">
<label class="col-sm-3 col-form-label" for="FAM_FACTS_QUICK">
<?= I18N::translate('Quick family facts') ?>
</label>
<div class="col-sm-9">
<?= view('components/select', ['name' => 'FAM_FACTS_QUICK[]', 'id' => 'FAM_FACTS_QUICK', 'selected' => explode(',', $tree->getPreference('FAM_FACTS_QUICK')), 'options' => $all_family_facts, 'class' => 'tom-select']) ?>
<div class="form-text">
<?= /* I18N: Help text for the “Quick family facts” configuration setting */ I18N::translate('The most common family facts and events are listed separately, so that they can be added more easily.') ?>
</div>
</div>
</div>
<h2><?= I18N::translate('Other preferences') ?></h2>
<!-- SURNAME_TRADITION -->
<fieldset class="row mb-3">
<legend class="col-form-label col-sm-3">
<?= I18N::translate('Surname tradition') ?>
</legend>
<div class="col-sm-9">
<?= view('components/radios', ['name' => 'SURNAME_TRADITION', 'options' => $all_surname_traditions, 'selected' => $tree->getPreference('SURNAME_TRADITION')]) ?>
<div class="form-text">
<?= /* I18N: Help text for the “Surname tradition” configuration setting */ I18N::translate('When you add a new family member, a default surname can be provided. This surname will depend on the local tradition.') ?>
</div>
</div>
</fieldset>
<!-- FULL_SOURCES -->
<fieldset class="row mb-3">
<legend class="col-form-label col-sm-3">
<?= /* I18N: A configuration setting */ I18N::translate('Use full source citations') ?>
</legend>
<div class="col-sm-9">
<?= view('components/radios-inline', ['name' => 'FULL_SOURCES', 'options' => [I18N::translate('no'), I18N::translate('yes')], 'selected' => (int) $tree->getPreference('FULL_SOURCES')]) ?>
<div class="form-text">
<?= /* I18N: Help text for the “Use full source citations” configuration setting */ I18N::translate('Source citations can include fields to record the quality of the data (primary, secondary, etc.) and the date the event was recorded in the source. If you don’t use these fields, you can disable them when creating new source citations.') ?>
</div>
</div>
</fieldset>
<!-- PREFER_LEVEL2_SOURCES -->
<fieldset class="row mb-3">
<legend class="col-form-label col-sm-3">
<?= /* I18N: A configuration setting */ I18N::translate('Source type') ?>
</legend>
<div class="col-sm-9">
<?= view('components/radios-inline', ['name' => 'PREFER_LEVEL2_SOURCES', 'options' => $source_types, 'selected' => (int) $tree->getPreference('PREFER_LEVEL2_SOURCES')]) ?>
<div class="form-text">
<?= /* I18N: Help text for the “Source type” configuration setting */ I18N::translate('When adding new close relatives, you can add source citations to the records (individual and family) or to the facts and events (birth, marriage, and death). This option controls whether records or facts will be selected by default.') ?>
</div>
</div>
</fieldset>
<!-- NO_UPDATE_CHAN -->
<fieldset class="row mb-3">
<legend class="col-form-label col-sm-3">
<?= /* I18N: A configuration setting */ I18N::translate('Keep the existing “last change” information') ?>
</legend>
<div class="col-sm-9">
<?= view('components/radios-inline', ['name' => 'NO_UPDATE_CHAN', 'options' => [I18N::translate('no'), I18N::translate('yes')], 'selected' => (int) $tree->getPreference('NO_UPDATE_CHAN')]) ?>
<div class="form-text">
<?= /* I18N: Help text for the “Keep the existing ‘last change’ information” configuration setting */ I18N::translate('When a record is edited, the user and timestamp are recorded. Sometimes it is desirable to keep the existing “last change” information, for example when making minor corrections to someone else’s data. This option controls whether this feature is selected by default.') ?>
</div>
</div>
</fieldset>
<div class="row mb-3">
<div class="offset-sm-3 col-sm-9">
<button type="submit" class="btn btn-primary">
<?= view('icons/save') ?>
<?= I18N::translate('save') ?>
</button>
<a class="btn btn-secondary" href="<?= e(route(ManageTrees::class, ['tree' => $tree->name()])) ?>">
<?= view('icons/cancel') ?>
<?= I18N::translate('cancel') ?>
</a>
<!-- Coming soon
<div class="form-check">
<?php if ($tree_count > 1) : ?>
<label>
<input type="checkbox" name="all_trees">
<?= /* I18N: Label for checkbox */ I18N::translate('Apply these preferences to all family trees') ?>
</label>
<?php endif ?>
</div>
<div class="form-check">
<label>
<input type="checkbox" name="new_trees">
<?= /* I18N: Label for checkbox */ I18N::translate('Apply these preferences to new family trees') ?>
</label>
</div>
</div>
-->
</div>
</form>
|