xref: /webtrees/resources/views/admin/modules.phtml (revision 7bb2799ca76c2c5324a1ca8ca14032ef419e318d)
10c0910bfSGreg Roach<?php
2dd6b2bfcSGreg Roach
30c0910bfSGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\ControlPanel;
49f667ff2SGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\ModuleDeleteSettings;
59f667ff2SGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\ModulesAllAction;
60c0910bfSGreg Roachuse Fisharebest\Webtrees\I18N;
70c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleAnalyticsInterface;
80c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleBlockInterface;
90c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleChartInterface;
100c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleConfigInterface;
110c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleCustomInterface;
12*7bb2799cSGreg Roachuse Fisharebest\Webtrees\Module\ModuleDataFixInterface;
130c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleExternalUrlInterface;
140c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleFooterInterface;
150c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleHistoricEventsInterface;
169f667ff2SGreg Roachuse Fisharebest\Webtrees\Module\ModuleInterface;
170c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleLanguageInterface;
180c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleListInterface;
190c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleMenuInterface;
200c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleReportInterface;
210c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleSidebarInterface;
220c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleTabInterface;
230c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleThemeInterface;
240c0910bfSGreg Roachuse Fisharebest\Webtrees\View;
259f667ff2SGreg Roachuse Illuminate\Support\Collection;
269f667ff2SGreg Roach
279f667ff2SGreg Roach/**
2836779af1SGreg Roach * @var Collection<int,string>          $deleted_modules
2936779af1SGreg Roach * @var Collection<int,ModuleInterface> $modules
309f667ff2SGreg Roach * @var string                          $title
319f667ff2SGreg Roach */
320c0910bfSGreg Roach
330c0910bfSGreg Roach?>
340c0910bfSGreg Roach
350c0910bfSGreg Roach<?= view('components/breadcrumbs', ['links' => [route(ControlPanel::class) => I18N::translate('Control panel'), $title]]) ?>
36dd6b2bfcSGreg Roach
37dd6b2bfcSGreg Roach<h1><?= $title ?></h1>
38dd6b2bfcSGreg Roach
39dd6b2bfcSGreg Roach<?php foreach ($deleted_modules as $module_name) : ?>
40dd6b2bfcSGreg Roach    <div class="alert alert-warning" role="alert">
41315eb316SGreg Roach        <form method="post" action="<?= e(route(ModuleDeleteSettings::class)) ?>">
42dd6b2bfcSGreg Roach            <input type="hidden" name="module_name" value="<?= $module_name ?>">
4381443e3cSGreg Roach
44dd6b2bfcSGreg Roach            <?= I18N::translate('Preferences exist for the module “%s”, but this module no longer exists.', $module_name) ?>
4581443e3cSGreg Roach
4697c22350SGreg Roach            <button type="submit" class="btn btn-secondary">
47dd6b2bfcSGreg Roach                <?= I18N::translate('Delete the preferences for this module.') ?>
48dd6b2bfcSGreg Roach            </button>
4981443e3cSGreg Roach
5081443e3cSGreg Roach            <?= csrf_field() ?>
51dd6b2bfcSGreg Roach        </form>
52dd6b2bfcSGreg Roach    </div>
53dd6b2bfcSGreg Roach<?php endforeach ?>
54dd6b2bfcSGreg Roach
559f667ff2SGreg Roach<form method="post" action="<?= e(route(ModulesAllAction::class)) ?>">
56b6c326d8SGreg Roach    <table class="table table-bordered table-hover table-sm table-module-administration"
57b6c326d8SGreg Roach        <?= view('lists/datatables-attributes') ?>
58b6c326d8SGreg Roach        data-info="false"
59b6c326d8SGreg Roach        data-paging="false"
60b6c326d8SGreg Roach        data-filter="false"
61b6c326d8SGreg Roach    >
62315eb316SGreg Roach        <caption class="visually-hidden">
63dd6b2bfcSGreg Roach            <?= I18N::translate('Module administration') ?>
64dd6b2bfcSGreg Roach        </caption>
65dd6b2bfcSGreg Roach        <thead>
66dd6b2bfcSGreg Roach            <tr>
67dd6b2bfcSGreg Roach                <th>
68dd6b2bfcSGreg Roach                    <?= I18N::translate('Module') ?>
69dd6b2bfcSGreg Roach                </th>
70dd6b2bfcSGreg Roach                <th>
71dd6b2bfcSGreg Roach                    <?= I18N::translate('Enabled') ?>
72dd6b2bfcSGreg Roach                </th>
730cb66f86SGreg Roach                <th data-orderable="false">
74dd6b2bfcSGreg Roach                    <?= I18N::translate('Description') ?>
75dd6b2bfcSGreg Roach                </th>
760cb66f86SGreg Roach                <th title="<?= I18N::translate('Preferences') ?>">
770cb66f86SGreg Roach                    <?= view('icons/preferences') ?>
78315eb316SGreg Roach                    <span class="visually-hidden"><?= I18N::translate('Preferences') ?></span>
79dd6b2bfcSGreg Roach                </th>
800cb66f86SGreg Roach                <th title="<?= I18N::translate('Menus') ?>">
810cb66f86SGreg Roach                    <?= view('icons/menu') ?>
82315eb316SGreg Roach                    <span class="visually-hidden"><?= I18N::translate('Menus') ?></span>
83dd6b2bfcSGreg Roach                </th>
840cb66f86SGreg Roach                <th title="<?= I18N::translate('Tabs') ?>">
850cb66f86SGreg Roach                    <?= view('icons/tab') ?>
86315eb316SGreg Roach                    <span class="visually-hidden"><?= I18N::translate('Tabs') ?></span>
87dd6b2bfcSGreg Roach                </th>
880cb66f86SGreg Roach                <th title="<?= I18N::translate('Sidebars') ?>">
890cb66f86SGreg Roach                    <?= view('icons/sidebar') ?>
90315eb316SGreg Roach                    <span class="visually-hidden"><?= I18N::translate('Sidebars') ?></span>
91dd6b2bfcSGreg Roach                </th>
920cb66f86SGreg Roach                <th title="<?= I18N::translate('Blocks') ?>">
930cb66f86SGreg Roach                    <?= view('icons/block') ?>
94315eb316SGreg Roach                    <span class="visually-hidden"><?= I18N::translate('Blocks') ?></span>
95dd6b2bfcSGreg Roach                </th>
96*7bb2799cSGreg Roach                <th title="<?= I18N::translate('Data fixes') ?>">
97*7bb2799cSGreg Roach                    <?= view('icons/data-fix') ?>
98*7bb2799cSGreg Roach                    <span class="visually-hidden"><?= I18N::translate('Data fixes') ?></span>
99*7bb2799cSGreg Roach                </th>
1000cb66f86SGreg Roach                <th title="<?= I18N::translate('Charts') ?>">
1010cb66f86SGreg Roach                    <?= view('icons/chart') ?>
102315eb316SGreg Roach                    <span class="visually-hidden"><?= I18N::translate('Charts') ?></span>
103dd6b2bfcSGreg Roach                </th>
10467992b6aSRichard Cissee                <th title="<?= I18N::translate('Lists') ?>">
10567992b6aSRichard Cissee                    <?= view('icons/list') ?>
106315eb316SGreg Roach                    <span class="visually-hidden"><?= I18N::translate('Lists') ?></span>
10767992b6aSRichard Cissee                </th>
1080cb66f86SGreg Roach                <th title="<?= I18N::translate('Reports') ?>">
1090cb66f86SGreg Roach                    <?= view('icons/report') ?>
110315eb316SGreg Roach                    <span class="visually-hidden"><?= I18N::translate('Reports') ?></span>
111dd6b2bfcSGreg Roach                </th>
11233c34396SGreg Roach                <th title="<?= I18N::translate('Footers') ?>">
11333c34396SGreg Roach                    <?= view('icons/footer') ?>
114315eb316SGreg Roach                    <span class="visually-hidden"><?= I18N::translate('Footers') ?></span>
11533c34396SGreg Roach                </th>
1169e5cb8c9SGreg Roach                <th title="<?= I18N::translate('Tracking and analytics') ?>">
1179e5cb8c9SGreg Roach                    <?= view('icons/analytics') ?>
118315eb316SGreg Roach                    <span class="visually-hidden"><?= I18N::translate('Tracking and analytics') ?></span>
1199e5cb8c9SGreg Roach                </th>
120f3244202SGreg Roach                <th title="<?= I18N::translate('Historic events') ?>">
121f3244202SGreg Roach                    <?= view('icons/history') ?>
122315eb316SGreg Roach                    <span class="visually-hidden"><?= I18N::translate('Historic events') ?></span>
123f3244202SGreg Roach                </th>
12411eb8581SGreg Roach                <th title="<?= I18N::translate('Themes') ?>">
1250cb66f86SGreg Roach                    <?= view('icons/theme') ?>
126315eb316SGreg Roach                    <span class="visually-hidden"><?= I18N::translate('Themes') ?></span>
127dd6b2bfcSGreg Roach                </th>
12811eb8581SGreg Roach                <th title="<?= I18N::translate('Languages') ?>">
12911eb8581SGreg Roach                    <?= view('icons/language') ?>
130315eb316SGreg Roach                    <span class="visually-hidden"><?= I18N::translate('Languages') ?></span>
13111eb8581SGreg Roach                </th>
132dd6b2bfcSGreg Roach            </tr>
133dd6b2bfcSGreg Roach        </thead>
1340cb66f86SGreg Roach
135dd6b2bfcSGreg Roach        <tbody>
13649a243cbSGreg Roach            <?php foreach ($modules as $module) : ?>
137dd6b2bfcSGreg Roach                <tr>
1380cb66f86SGreg Roach                    <th scope="row" dir="auto">
1397b30610bSGreg Roach                        <?= $module instanceof ModuleCustomInterface ? $module->customTranslations(I18N::languageTag())[$module->title()] ?? $module->title() : $module->title() ?>
140dd6b2bfcSGreg Roach                    </th>
14149a243cbSGreg Roach                    <td class="text-center" data-sort="<?= $module->isEnabled() ?>">
142b6c326d8SGreg Roach                        <?= view('components/checkbox', ['label' => '', 'name' => 'status-' . $module->name(), 'checked' => $module->isEnabled()]) ?>
143dd6b2bfcSGreg Roach                    </td>
1440cb66f86SGreg Roach                    <td>
1457b30610bSGreg Roach                        <?= $module instanceof ModuleCustomInterface ? $module->customTranslations(I18N::languageTag())[$module->description()] ?? $module->description() : $module->description() ?>
1469cad7645SGreg Roach                        <?php if ($module instanceof ModuleCustomInterface) : ?>
1471bfef740SGreg Roach                            <?= view('admin/custom-module-info', ['module' => $module]) ?>
148dd6b2bfcSGreg Roach                        <?php endif ?>
1498e5c5efeSGreg Roach                        <?php if ($module instanceof ModuleExternalUrlInterface) : ?>
1501bfef740SGreg Roach                            <?= view('admin/external-module-info', ['module' => $module]) ?>
1518e5c5efeSGreg Roach                        <?php endif ?>
152dd6b2bfcSGreg Roach                    </td>
1530cb66f86SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Preferences') ?>">
1540cb66f86SGreg Roach                        <?php if ($module instanceof ModuleConfigInterface) : ?>
1558d6560c4SGreg Roach                            <?php if ($module->isEnabled()) : ?>
1560cb66f86SGreg Roach                                <a href="<?= e($module->getConfigLink()) ?>" title="<?= I18N::translate('Preferences') ?>">
1570cb66f86SGreg Roach                                    <?= view('icons/preferences') ?>
158315eb316SGreg Roach                                    <span class="visually-hidden">
1590cb66f86SGreg Roach                                        <?= I18N::translate('Preferences') ?>
1600cb66f86SGreg Roach                                    </span>
1610cb66f86SGreg Roach                                </a>
1628d6560c4SGreg Roach                            <?php else : ?>
1638d6560c4SGreg Roach                                <?= view('icons/preferences') ?>
1648d6560c4SGreg Roach                            <?php endif ?>
1650cb66f86SGreg Roach                        <?php endif ?>
1660cb66f86SGreg Roach                    </td>
1670cb66f86SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Menu') ?>">
168dd6b2bfcSGreg Roach                        <?php if ($module instanceof ModuleMenuInterface) : ?>
169dd6b2bfcSGreg Roach                            <?= view('icons/menu') ?>
170315eb316SGreg Roach                            <span class="visually-hidden"><?= I18N::translate('Menu') ?></span>
171dd6b2bfcSGreg Roach                        <?php else : ?>
172dd6b2bfcSGreg Roach                            -
173dd6b2bfcSGreg Roach                        <?php endif ?>
174dd6b2bfcSGreg Roach                    </td>
1750cb66f86SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Tab') ?>">
176dd6b2bfcSGreg Roach                        <?php if ($module instanceof ModuleTabInterface) : ?>
177dd6b2bfcSGreg Roach                            <?= view('icons/tab') ?>
178315eb316SGreg Roach                            <span class="visually-hidden"><?= I18N::translate('Tab') ?></span>
1790cb66f86SGreg Roach                        <?php else : ?>
1800cb66f86SGreg Roach                            -
181dd6b2bfcSGreg Roach                        <?php endif ?>
1820cb66f86SGreg Roach                    </td>
1830cb66f86SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Sidebar') ?>">
184dd6b2bfcSGreg Roach                        <?php if ($module instanceof ModuleSidebarInterface) : ?>
185dd6b2bfcSGreg Roach                            <?= view('icons/sidebar') ?>
186315eb316SGreg Roach                            <span class="visually-hidden"><?= I18N::translate('Sidebar') ?></span>
1870cb66f86SGreg Roach                        <?php else : ?>
1880cb66f86SGreg Roach                            -
189dd6b2bfcSGreg Roach                        <?php endif ?>
1900cb66f86SGreg Roach                    </td>
1910cb66f86SGreg Roach                    <td class="text-center text-muted">
1920cb66f86SGreg Roach                        <?php if ($module instanceof ModuleBlockInterface) : ?>
1930cb66f86SGreg Roach                            <?php if ($module->isUserBlock()) : ?>
1940cb66f86SGreg Roach                                <span title="<?= I18N::translate('My page') ?>">
195dd6b2bfcSGreg Roach                                    <?= view('icons/block-user') ?>
1960cb66f86SGreg Roach                                </span>
197315eb316SGreg Roach                                <span class="visually-hidden">
1980cb66f86SGreg Roach                                    <?= I18N::translate('My page') ?>
1990cb66f86SGreg Roach                                </span>
200dd6b2bfcSGreg Roach                            <?php endif ?>
2010cb66f86SGreg Roach
2020cb66f86SGreg Roach                            <?php if ($module->isTreeBlock()) : ?>
2030cb66f86SGreg Roach                                <span title="<?= I18N::translate('Home page') ?>">
204dd6b2bfcSGreg Roach                                    <?= view('icons/block-tree') ?>
2050cb66f86SGreg Roach                                </span>
206315eb316SGreg Roach                                <span class="visually-hidden">
2070cb66f86SGreg Roach                                    <?= I18N::translate('Home page') ?>
2080cb66f86SGreg Roach                                </span>
209dd6b2bfcSGreg Roach                            <?php endif ?>
2100cb66f86SGreg Roach                        <?php else : ?>
2110cb66f86SGreg Roach                            -
2120cb66f86SGreg Roach                        <?php endif ?>
2130cb66f86SGreg Roach                    </td>
214*7bb2799cSGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Data fix') ?>">
215*7bb2799cSGreg Roach                        <?php if ($module instanceof ModuleDataFixInterface) : ?>
216*7bb2799cSGreg Roach                            <?= view('icons/data-fix') ?>
217*7bb2799cSGreg Roach                            <span class="visually-hidden"><?= I18N::translate('Data fix') ?></span>
218*7bb2799cSGreg Roach                        <?php else : ?>
219*7bb2799cSGreg Roach                            -
220*7bb2799cSGreg Roach                        <?php endif ?>
221*7bb2799cSGreg Roach                    </td>
2220cb66f86SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Chart') ?>">
223dd6b2bfcSGreg Roach                        <?php if ($module instanceof ModuleChartInterface) : ?>
224dd6b2bfcSGreg Roach                            <?= view('icons/chart') ?>
225315eb316SGreg Roach                            <span class="visually-hidden"><?= I18N::translate('Chart') ?></span>
2260cb66f86SGreg Roach                        <?php else : ?>
2270cb66f86SGreg Roach                            -
228dd6b2bfcSGreg Roach                        <?php endif ?>
2290cb66f86SGreg Roach                    </td>
23067992b6aSRichard Cissee                    <td class="text-center text-muted" title="<?= I18N::translate('List') ?>">
23167992b6aSRichard Cissee                        <?php if ($module instanceof ModuleListInterface) : ?>
23267992b6aSRichard Cissee                            <?= view('icons/list') ?>
233315eb316SGreg Roach                            <span class="visually-hidden"><?= I18N::translate('List') ?></span>
23467992b6aSRichard Cissee                        <?php else : ?>
23567992b6aSRichard Cissee                            -
23667992b6aSRichard Cissee                        <?php endif ?>
23767992b6aSRichard Cissee                    </td>
2380cb66f86SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Report') ?>">
239dd6b2bfcSGreg Roach                        <?php if ($module instanceof ModuleReportInterface) : ?>
240dd6b2bfcSGreg Roach                            <?= view('icons/report') ?>
241315eb316SGreg Roach                            <span class="visually-hidden"><?= I18N::translate('Report') ?></span>
2420cb66f86SGreg Roach                        <?php else : ?>
2430cb66f86SGreg Roach                            -
244dd6b2bfcSGreg Roach                        <?php endif ?>
2450cb66f86SGreg Roach                    </td>
24633c34396SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Footer') ?>">
24733c34396SGreg Roach                        <?php if ($module instanceof ModuleFooterInterface) : ?>
24833c34396SGreg Roach                            <?= view('icons/footer') ?>
249315eb316SGreg Roach                            <span class="visually-hidden"><?= I18N::translate('Footer') ?></span>
25033c34396SGreg Roach                        <?php else : ?>
25133c34396SGreg Roach                            -
25233c34396SGreg Roach                        <?php endif ?>
25333c34396SGreg Roach                    </td>
2549e5cb8c9SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Tracking and analytics') ?>">
2559e5cb8c9SGreg Roach                        <?php if ($module instanceof ModuleAnalyticsInterface) : ?>
2569e5cb8c9SGreg Roach                            <?= view('icons/analytics') ?>
257315eb316SGreg Roach                            <span class="visually-hidden"><?= I18N::translate('Tracking and analytics') ?></span>
2589e5cb8c9SGreg Roach                        <?php else : ?>
2599e5cb8c9SGreg Roach                            -
2609e5cb8c9SGreg Roach                        <?php endif ?>
2619e5cb8c9SGreg Roach                    </td>
262f3244202SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Historic events') ?>">
263f3244202SGreg Roach                        <?php if ($module instanceof ModuleHistoricEventsInterface) : ?>
264f3244202SGreg Roach                            <?= view('icons/history') ?>
265315eb316SGreg Roach                            <span class="visually-hidden"><?= I18N::translate('Historic events') ?></span>
266f3244202SGreg Roach                        <?php else : ?>
267f3244202SGreg Roach                            -
268f3244202SGreg Roach                        <?php endif ?>
269f3244202SGreg Roach                    </td>
27011eb8581SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Theme') ?>">
271dd6b2bfcSGreg Roach                        <?php if ($module instanceof ModuleThemeInterface) : ?>
272dd6b2bfcSGreg Roach                            <?= view('icons/theme') ?>
273315eb316SGreg Roach                            <span class="visually-hidden"><?= I18N::translate('Theme') ?></span>
2740cb66f86SGreg Roach                        <?php else : ?>
2750cb66f86SGreg Roach                            -
276dd6b2bfcSGreg Roach                        <?php endif ?>
277dd6b2bfcSGreg Roach                    </td>
27811eb8581SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Language') ?>">
27911eb8581SGreg Roach                        <?php if ($module instanceof ModuleLanguageInterface) : ?>
28011eb8581SGreg Roach                            <?= view('icons/language') ?>
281315eb316SGreg Roach                            <span class="visually-hidden"><?= I18N::translate('Language') ?></span>
28211eb8581SGreg Roach                        <?php else : ?>
28311eb8581SGreg Roach                            -
28411eb8581SGreg Roach                        <?php endif ?>
28511eb8581SGreg Roach                    </td>
286dd6b2bfcSGreg Roach                </tr>
287dd6b2bfcSGreg Roach            <?php endforeach ?>
288dd6b2bfcSGreg Roach        </tbody>
289dd6b2bfcSGreg Roach    </table>
29081443e3cSGreg Roach
291dd6b2bfcSGreg Roach    <button class="btn btn-primary" type="submit">
292dd6b2bfcSGreg Roach        <?= view('icons/save') ?>
29381443e3cSGreg Roach        <?= I18N::translate('save') ?>
29481443e3cSGreg Roach    </button>
29581443e3cSGreg Roach
29681443e3cSGreg Roach    <?= csrf_field() ?>
297dd6b2bfcSGreg Roach</form>
298dd6b2bfcSGreg Roach
299dd6b2bfcSGreg Roach<?php View::push('javascript') ?>
300dd6b2bfcSGreg Roach<script>
301dd6b2bfcSGreg Roach  'use strict';
302dd6b2bfcSGreg Roach
303b6c326d8SGreg Roach  $(".table-module-administration").dataTable();
304dd6b2bfcSGreg Roach</script>
305dd6b2bfcSGreg Roach<?php View::endpush() ?>
306