xref: /webtrees/resources/views/modules/todo/config.phtml (revision 9e3c2cf9009c4c2140f50ddfc80b91f2f82cdce5)
1d70512abSGreg Roach<?php
2d70512abSGreg Roach
3d70512abSGreg Roachuse Fisharebest\Webtrees\I18N;
4d70512abSGreg Roach
57c2c99faSGreg Roach/**
67c2c99faSGreg Roach * @var string $show_future
77c2c99faSGreg Roach * @var string $show_other
87c2c99faSGreg Roach * @var string $show_unassigned
97c2c99faSGreg Roach */
107c2c99faSGreg Roach
11d70512abSGreg Roach?>
12dd6b2bfcSGreg Roach
13dd6b2bfcSGreg Roach<p>
14dd6b2bfcSGreg Roach    <?= I18N::translate('Research tasks are special events, added to individuals in your family tree, which identify the need for further research. You can use them as a reminder to check facts against more reliable sources, to obtain documents or photographs, to resolve conflicting information, etc.') ?>
15dd6b2bfcSGreg Roach    <?= I18N::translate('To create new research tasks, you must first add “research task” to the list of facts and events in the family tree’s preferences.') ?>
16dd6b2bfcSGreg Roach    <?= I18N::translate('Research tasks are stored using the custom GEDCOM tag “_TODO”. Other genealogy applications may not recognize this tag.') ?>
17dd6b2bfcSGreg Roach</p>
18dd6b2bfcSGreg Roach
19*9e3c2cf9SGreg Roach<div class="row mb-3">
20dd6b2bfcSGreg Roach    <label class="col-sm-3 col-form-label" for="show_other">
21dd6b2bfcSGreg Roach        <?= I18N::translate('Show research tasks that are assigned to other users') ?>
22dd6b2bfcSGreg Roach    </label>
23dd6b2bfcSGreg Roach    <div class="col-sm-9">
24b6c326d8SGreg Roach        <?= view('components/radios-inline', ['name' => 'show_other', 'options' => [I18N::translate('no'), I18N::translate('yes')], 'selected' => (int) $show_other]) ?>
25dd6b2bfcSGreg Roach    </div>
26dd6b2bfcSGreg Roach</div>
27dd6b2bfcSGreg Roach
28dd6b2bfcSGreg Roach
29*9e3c2cf9SGreg Roach<div class="row mb-3">
30dd6b2bfcSGreg Roach    <label class="col-sm-3 col-form-label" for="show_unassigned">
31dd6b2bfcSGreg Roach        <?= I18N::translate('Show research tasks that are not assigned to any user') ?>
32dd6b2bfcSGreg Roach    </label>
33dd6b2bfcSGreg Roach    <div class="col-sm-9">
34b6b9dcc9SGreg Roach        <?= view('components/radios-inline', ['name' => 'show_unassigned', 'options' => [I18N::translate('no'), I18N::translate('yes')], 'selected' => (int) $show_unassigned]) ?>
35dd6b2bfcSGreg Roach    </div>
36dd6b2bfcSGreg Roach</div>
37dd6b2bfcSGreg Roach
38*9e3c2cf9SGreg Roach<div class="row mb-3">
39dd6b2bfcSGreg Roach    <label class="col-sm-3 col-form-label" for="show_future">
40dd6b2bfcSGreg Roach        <?= I18N::translate('Show research tasks that have a date in the future') ?>
41dd6b2bfcSGreg Roach    </label>
42dd6b2bfcSGreg Roach    <div class="col-sm-9">
43b6c326d8SGreg Roach        <?= view('components/radios-inline', ['name' => 'show_future', 'options' => [I18N::translate('no'), I18N::translate('yes')], 'selected' => (int) $show_future]) ?>
44dd6b2bfcSGreg Roach    </div>
45dd6b2bfcSGreg Roach</div>
46