xref: /webtrees/resources/views/admin/site-preferences.phtml (revision 7dca5265e4312c8525862b13665feab404dce2f2)
10c0910bfSGreg Roach<?php
2dd6b2bfcSGreg Roach
30c0910bfSGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\ControlPanel;
4c7aa856bSGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\SitePreferencesAction;
50c0910bfSGreg Roachuse Fisharebest\Webtrees\I18N;
60c0910bfSGreg Roachuse Fisharebest\Webtrees\Site;
70c0910bfSGreg Roach
8c7aa856bSGreg Roach/**
9c7aa856bSGreg Roach * @var array<string> $all_themes
10c7aa856bSGreg Roach * @var string        $title
11c7aa856bSGreg Roach */
12c7aa856bSGreg Roach
130c0910bfSGreg Roach?>
140c0910bfSGreg Roach
150c0910bfSGreg Roach<?= view('components/breadcrumbs', ['links' => [route(ControlPanel::class) => I18N::translate('Control panel'), $title]]) ?>
16dd6b2bfcSGreg Roach
17dd6b2bfcSGreg Roach<h1><?= $title ?></h1>
18dd6b2bfcSGreg Roach
19c7aa856bSGreg Roach<form method="post" action="<?= e(route(SitePreferencesAction::class)) ?>" class="form-horizontal">
20dd6b2bfcSGreg Roach    <?= csrf_field() ?>
21dd6b2bfcSGreg Roach
22dd6b2bfcSGreg Roach    <!-- INDEX_DIRECTORY -->
23dd6b2bfcSGreg Roach    <div class="row form-group">
24dd6b2bfcSGreg Roach        <label for="INDEX_DIRECTORY" class="col-sm-3 col-form-label">
25dd6b2bfcSGreg Roach            <?= /* I18N: A configuration setting */
26dd6b2bfcSGreg Roach            I18N::translate('Data folder') ?>
27dd6b2bfcSGreg Roach        </label>
28dd6b2bfcSGreg Roach        <div class="col-sm-9">
29*7dca5265SGreg Roach            <input type="text" class="form-control" dir="ltr" id="INDEX_DIRECTORY" name="INDEX_DIRECTORY" value="<?= e(Site::getPreference('INDEX_DIRECTORY')) ?>" maxlength="255" placeholder="data/" required="required">
30dd6b2bfcSGreg Roach            <p class="small text-muted">
31dd6b2bfcSGreg Roach                <?= /* I18N: Help text for the "Data folder" site configuration setting */
32dd6b2bfcSGreg Roach                I18N::translate('This folder will be used by webtrees to store media files, GEDCOM files, temporary files, etc. These files may contain private data, and should not be made available over the internet.') ?>
33dd6b2bfcSGreg Roach            </p>
34dd6b2bfcSGreg Roach            <p class="small text-muted">
35dd6b2bfcSGreg Roach                <?= /* I18N: “Apache” is a software program. */
36dd6b2bfcSGreg Roach                I18N::translate('To protect this private data, webtrees uses an Apache configuration file (.htaccess) which blocks all access to this folder. If your web-server does not support .htaccess files, and you cannot restrict access to this folder, then you can select another folder, away from your web documents.') ?>
37dd6b2bfcSGreg Roach            </p>
38dd6b2bfcSGreg Roach            <p class="small text-muted">
39dd6b2bfcSGreg Roach                <?= I18N::translate('If you select a different folder, you must also move all files (except config.ini.php, index.php, and .htaccess) from the existing folder to the new folder.') ?>
40dd6b2bfcSGreg Roach            </p>
41dd6b2bfcSGreg Roach            <p class="small text-muted">
42dd6b2bfcSGreg Roach                <?= I18N::translate('The folder can be specified in full (e.g. /home/user_name/webtrees_data/) or relative to the installation folder (e.g. ../../webtrees_data/).') ?>
43dd6b2bfcSGreg Roach            </p>
44dd6b2bfcSGreg Roach        </div>
45dd6b2bfcSGreg Roach    </div>
46dd6b2bfcSGreg Roach
47dd6b2bfcSGreg Roach    <!-- TIMEZONE -->
48dd6b2bfcSGreg Roach    <div class="row form-group">
49dd6b2bfcSGreg Roach        <label for="TIMEZONE" class="col-sm-3 col-form-label">
50dd6b2bfcSGreg Roach            <?= I18N::translate('Time zone') ?>
51dd6b2bfcSGreg Roach        </label>
52dd6b2bfcSGreg Roach        <div class="col-sm-9">
533cfcc809SGreg Roach            <?= view('components/select', ['name' => 'TIMEZONE', 'selected' => Site::getPreference('TIMEZONE', 'UTC'), 'options' => array_combine(DateTimeZone::listIdentifiers(), DateTimeZone::listIdentifiers())]) ?>
54dd6b2bfcSGreg Roach            <p class="small text-muted">
55dd6b2bfcSGreg Roach                <?= I18N::translate('The time zone is required for date calculations, such as knowing today’s date.') ?>
56dd6b2bfcSGreg Roach            </p>
57dd6b2bfcSGreg Roach        </div>
58dd6b2bfcSGreg Roach    </div>
59dd6b2bfcSGreg Roach
60dd6b2bfcSGreg Roach    <!-- THEME_DIR -->
61dd6b2bfcSGreg Roach    <div class="row form-group">
62dd6b2bfcSGreg Roach        <label for="THEME_DIR" class="col-sm-3 col-form-label">
63dd6b2bfcSGreg Roach            <?= /* I18N: A configuration setting */
64dd6b2bfcSGreg Roach            I18N::translate('Default theme') ?>
65dd6b2bfcSGreg Roach        </label>
66dd6b2bfcSGreg Roach        <div class="col-sm-9">
67c9e11c2aSGreg Roach            <?= view('components/select', ['name' => 'THEME_DIR', 'selected' => Site::getPreference('THEME_DIR', 'webtrees'), 'options' => $all_themes]) ?>
68dd6b2bfcSGreg Roach            <p class="small text-muted">
69dd6b2bfcSGreg Roach                <?= /* I18N: Help text for the "Default theme" site configuration setting */
70dd6b2bfcSGreg Roach                I18N::translate('You can change the appearance of webtrees using “themes”. Each theme has a different style, layout, color scheme, etc.') ?>
71dd6b2bfcSGreg Roach            </p>
72dd6b2bfcSGreg Roach        </div>
73dd6b2bfcSGreg Roach    </div>
74dd6b2bfcSGreg Roach
75c7aa856bSGreg Roach    <!-- LANGUAGE -->
76c7aa856bSGreg Roach    <div class="row form-group">
77c7aa856bSGreg Roach        <label class="col-sm-3 col-form-label" for="LANGUAGE">
78c7aa856bSGreg Roach            <?= /* I18N: A configuration setting */ I18N::translate('Language') ?>
79c7aa856bSGreg Roach        </label>
80c7aa856bSGreg Roach        <div class="col-sm-9">
81c7aa856bSGreg Roach            <select id="LANGUAGE" name="LANGUAGE" class="form-control">
82c7aa856bSGreg Roach                <?php foreach (I18N::activeLocales() as $active_locale) : ?>
83c7aa856bSGreg Roach                    <option value="<?= $active_locale->languageTag() ?>" <?= Site::getPreference('LANGUAGE') === $active_locale->languageTag() ? 'selected' : '' ?>>
84c7aa856bSGreg Roach                        <?= $active_locale->endonym() ?>
85c7aa856bSGreg Roach                    </option>
86c7aa856bSGreg Roach                <?php endforeach ?>
87c7aa856bSGreg Roach            </select>
88c7aa856bSGreg Roach            <p class="small text-muted">
89c7aa856bSGreg Roach                <?= /* I18N: Help text for the “Language” configuration setting */ I18N::translate('If a visitor to the website has not selected a preferred language in their browser preferences, or they have selected an unsupported language, then this language will be used. Typically this applies to search engines.') ?>
90c7aa856bSGreg Roach            </p>
91c7aa856bSGreg Roach        </div>
92c7aa856bSGreg Roach    </div>
93c7aa856bSGreg Roach
94dd6b2bfcSGreg Roach    <!-- ALLOW_CHANGE_GEDCOM -->
95dd6b2bfcSGreg Roach    <fieldset class="form-group">
96dd6b2bfcSGreg Roach        <div class="row">
97dd6b2bfcSGreg Roach            <legend class="col-form-label col-sm-3">
98dd6b2bfcSGreg Roach                <?= /* I18N: A configuration setting */
99dd6b2bfcSGreg Roach                I18N::translate('Show list of family trees') ?>
100dd6b2bfcSGreg Roach            </legend>
101dd6b2bfcSGreg Roach            <div class="col-sm-9">
102c9e11c2aSGreg Roach                <?= view('components/radios-inline', ['name' => 'ALLOW_CHANGE_GEDCOM', 'options' => [I18N::translate('no'), I18N::translate('yes')], 'selected' => (int) Site::getPreference('ALLOW_CHANGE_GEDCOM')]) ?>
103dd6b2bfcSGreg Roach                <p class="small text-muted">
104dd6b2bfcSGreg Roach                    <?= /* I18N: Help text for the “Show list of family trees” site configuration setting */
105dd6b2bfcSGreg Roach                    I18N::translate('For websites with more than one family tree, this option will show the list of family trees in the main menu, the search pages, etc.') ?>
106dd6b2bfcSGreg Roach                </p>
107dd6b2bfcSGreg Roach            </div>
108dd6b2bfcSGreg Roach        </div>
109dd6b2bfcSGreg Roach    </fieldset>
110dd6b2bfcSGreg Roach
111dd6b2bfcSGreg Roach    <div class="row form-group">
112dd6b2bfcSGreg Roach        <div class="offset-sm-3 col-sm-9">
113dd6b2bfcSGreg Roach            <button type="submit" class="btn btn-primary">
114dd6b2bfcSGreg Roach                <?= view('icons/save') ?>
115dd6b2bfcSGreg Roach                <?= I18N::translate('save') ?>
116dd6b2bfcSGreg Roach            </button>
117dd6b2bfcSGreg Roach
1180c0910bfSGreg Roach            <a href="<?= e(route(ControlPanel::class)) ?>" class="btn btn-secondary">
119dd6b2bfcSGreg Roach                <?= view('icons/cancel') ?>
120dd6b2bfcSGreg Roach                <?= I18N::translate('cancel') ?>
121dd6b2bfcSGreg Roach            </a>
122dd6b2bfcSGreg Roach        </div>
123dd6b2bfcSGreg Roach    </div>
124dd6b2bfcSGreg Roach</form>
125