xref: /webtrees/resources/views/admin/modules.phtml (revision 81443e3cbe4eef5ccdcf8dae716a7e35f7417b60)
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;
120c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleExternalUrlInterface;
130c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleFooterInterface;
140c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleHistoricEventsInterface;
159f667ff2SGreg Roachuse Fisharebest\Webtrees\Module\ModuleInterface;
160c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleLanguageInterface;
170c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleListInterface;
180c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleMenuInterface;
190c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleReportInterface;
200c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleSidebarInterface;
210c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleTabInterface;
220c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleThemeInterface;
230c0910bfSGreg Roachuse Fisharebest\Webtrees\View;
249f667ff2SGreg Roachuse Illuminate\Support\Collection;
259f667ff2SGreg Roach
269f667ff2SGreg Roach/**
2736779af1SGreg Roach * @var Collection<int,string>          $deleted_modules
2836779af1SGreg Roach * @var Collection<int,ModuleInterface> $modules
299f667ff2SGreg Roach * @var string                          $title
309f667ff2SGreg Roach */
310c0910bfSGreg Roach
320c0910bfSGreg Roach?>
330c0910bfSGreg Roach
340c0910bfSGreg Roach<?= view('components/breadcrumbs', ['links' => [route(ControlPanel::class) => I18N::translate('Control panel'), $title]]) ?>
35dd6b2bfcSGreg Roach
36dd6b2bfcSGreg Roach<h1><?= $title ?></h1>
37dd6b2bfcSGreg Roach
38dd6b2bfcSGreg Roach<?php foreach ($deleted_modules as $module_name) : ?>
39dd6b2bfcSGreg Roach    <div class="alert alert-warning" role="alert">
40315eb316SGreg Roach        <form method="post" action="<?= e(route(ModuleDeleteSettings::class)) ?>">
41dd6b2bfcSGreg Roach            <input type="hidden" name="module_name" value="<?= $module_name ?>">
42*81443e3cSGreg Roach
43dd6b2bfcSGreg Roach            <?= I18N::translate('Preferences exist for the module “%s”, but this module no longer exists.', $module_name) ?>
44*81443e3cSGreg Roach
4597c22350SGreg Roach            <button type="submit" class="btn btn-secondary">
46dd6b2bfcSGreg Roach                <?= I18N::translate('Delete the preferences for this module.') ?>
47dd6b2bfcSGreg Roach            </button>
48*81443e3cSGreg Roach
49*81443e3cSGreg Roach            <?= csrf_field() ?>
50dd6b2bfcSGreg Roach        </form>
51dd6b2bfcSGreg Roach    </div>
52dd6b2bfcSGreg Roach<?php endforeach ?>
53dd6b2bfcSGreg Roach
549f667ff2SGreg Roach<form method="post" action="<?= e(route(ModulesAllAction::class)) ?>">
55b6c326d8SGreg Roach    <table class="table table-bordered table-hover table-sm table-module-administration"
56b6c326d8SGreg Roach        <?= view('lists/datatables-attributes') ?>
57b6c326d8SGreg Roach        data-info="false"
58b6c326d8SGreg Roach        data-paging="false"
59b6c326d8SGreg Roach        data-filter="false"
60b6c326d8SGreg Roach    >
61315eb316SGreg Roach        <caption class="visually-hidden">
62dd6b2bfcSGreg Roach            <?= I18N::translate('Module administration') ?>
63dd6b2bfcSGreg Roach        </caption>
64dd6b2bfcSGreg Roach        <thead>
65dd6b2bfcSGreg Roach            <tr>
66dd6b2bfcSGreg Roach                <th>
67dd6b2bfcSGreg Roach                    <?= I18N::translate('Module') ?>
68dd6b2bfcSGreg Roach                </th>
69dd6b2bfcSGreg Roach                <th>
70dd6b2bfcSGreg Roach                    <?= I18N::translate('Enabled') ?>
71dd6b2bfcSGreg Roach                </th>
720cb66f86SGreg Roach                <th data-orderable="false">
73dd6b2bfcSGreg Roach                    <?= I18N::translate('Description') ?>
74dd6b2bfcSGreg Roach                </th>
750cb66f86SGreg Roach                <th title="<?= I18N::translate('Preferences') ?>">
760cb66f86SGreg Roach                    <?= view('icons/preferences') ?>
77315eb316SGreg Roach                    <span class="visually-hidden"><?= I18N::translate('Preferences') ?></span>
78dd6b2bfcSGreg Roach                </th>
790cb66f86SGreg Roach                <th title="<?= I18N::translate('Menus') ?>">
800cb66f86SGreg Roach                    <?= view('icons/menu') ?>
81315eb316SGreg Roach                    <span class="visually-hidden"><?= I18N::translate('Menus') ?></span>
82dd6b2bfcSGreg Roach                </th>
830cb66f86SGreg Roach                <th title="<?= I18N::translate('Tabs') ?>">
840cb66f86SGreg Roach                    <?= view('icons/tab') ?>
85315eb316SGreg Roach                    <span class="visually-hidden"><?= I18N::translate('Tabs') ?></span>
86dd6b2bfcSGreg Roach                </th>
870cb66f86SGreg Roach                <th title="<?= I18N::translate('Sidebars') ?>">
880cb66f86SGreg Roach                    <?= view('icons/sidebar') ?>
89315eb316SGreg Roach                    <span class="visually-hidden"><?= I18N::translate('Sidebars') ?></span>
90dd6b2bfcSGreg Roach                </th>
910cb66f86SGreg Roach                <th title="<?= I18N::translate('Blocks') ?>">
920cb66f86SGreg Roach                    <?= view('icons/block') ?>
93315eb316SGreg Roach                    <span class="visually-hidden"><?= I18N::translate('Blocks') ?></span>
94dd6b2bfcSGreg Roach                </th>
950cb66f86SGreg Roach                <th title="<?= I18N::translate('Charts') ?>">
960cb66f86SGreg Roach                    <?= view('icons/chart') ?>
97315eb316SGreg Roach                    <span class="visually-hidden"><?= I18N::translate('Charts') ?></span>
98dd6b2bfcSGreg Roach                </th>
9967992b6aSRichard Cissee                <th title="<?= I18N::translate('Lists') ?>">
10067992b6aSRichard Cissee                    <?= view('icons/list') ?>
101315eb316SGreg Roach                    <span class="visually-hidden"><?= I18N::translate('Lists') ?></span>
10267992b6aSRichard Cissee                </th>
1030cb66f86SGreg Roach                <th title="<?= I18N::translate('Reports') ?>">
1040cb66f86SGreg Roach                    <?= view('icons/report') ?>
105315eb316SGreg Roach                    <span class="visually-hidden"><?= I18N::translate('Reports') ?></span>
106dd6b2bfcSGreg Roach                </th>
10733c34396SGreg Roach                <th title="<?= I18N::translate('Footers') ?>">
10833c34396SGreg Roach                    <?= view('icons/footer') ?>
109315eb316SGreg Roach                    <span class="visually-hidden"><?= I18N::translate('Footers') ?></span>
11033c34396SGreg Roach                </th>
1119e5cb8c9SGreg Roach                <th title="<?= I18N::translate('Tracking and analytics') ?>">
1129e5cb8c9SGreg Roach                    <?= view('icons/analytics') ?>
113315eb316SGreg Roach                    <span class="visually-hidden"><?= I18N::translate('Tracking and analytics') ?></span>
1149e5cb8c9SGreg Roach                </th>
115f3244202SGreg Roach                <th title="<?= I18N::translate('Historic events') ?>">
116f3244202SGreg Roach                    <?= view('icons/history') ?>
117315eb316SGreg Roach                    <span class="visually-hidden"><?= I18N::translate('Historic events') ?></span>
118f3244202SGreg Roach                </th>
11911eb8581SGreg Roach                <th title="<?= I18N::translate('Themes') ?>">
1200cb66f86SGreg Roach                    <?= view('icons/theme') ?>
121315eb316SGreg Roach                    <span class="visually-hidden"><?= I18N::translate('Themes') ?></span>
122dd6b2bfcSGreg Roach                </th>
12311eb8581SGreg Roach                <th title="<?= I18N::translate('Languages') ?>">
12411eb8581SGreg Roach                    <?= view('icons/language') ?>
125315eb316SGreg Roach                    <span class="visually-hidden"><?= I18N::translate('Languages') ?></span>
12611eb8581SGreg Roach                </th>
127dd6b2bfcSGreg Roach            </tr>
128dd6b2bfcSGreg Roach        </thead>
1290cb66f86SGreg Roach
130dd6b2bfcSGreg Roach        <tbody>
13149a243cbSGreg Roach            <?php foreach ($modules as $module) : ?>
132dd6b2bfcSGreg Roach                <tr>
1330cb66f86SGreg Roach                    <th scope="row" dir="auto">
1347b30610bSGreg Roach                        <?= $module instanceof ModuleCustomInterface ? $module->customTranslations(I18N::languageTag())[$module->title()] ?? $module->title() : $module->title() ?>
135dd6b2bfcSGreg Roach                    </th>
13649a243cbSGreg Roach                    <td class="text-center" data-sort="<?= $module->isEnabled() ?>">
137b6c326d8SGreg Roach                        <?= view('components/checkbox', ['label' => '', 'name' => 'status-' . $module->name(), 'checked' => $module->isEnabled()]) ?>
138dd6b2bfcSGreg Roach                    </td>
1390cb66f86SGreg Roach                    <td>
1407b30610bSGreg Roach                        <?= $module instanceof ModuleCustomInterface ? $module->customTranslations(I18N::languageTag())[$module->description()] ?? $module->description() : $module->description() ?>
1419cad7645SGreg Roach                        <?php if ($module instanceof ModuleCustomInterface) : ?>
1421bfef740SGreg Roach                            <?= view('admin/custom-module-info', ['module' => $module]) ?>
143dd6b2bfcSGreg Roach                        <?php endif ?>
1448e5c5efeSGreg Roach                        <?php if ($module instanceof ModuleExternalUrlInterface) : ?>
1451bfef740SGreg Roach                            <?= view('admin/external-module-info', ['module' => $module]) ?>
1468e5c5efeSGreg Roach                        <?php endif ?>
147dd6b2bfcSGreg Roach                    </td>
1480cb66f86SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Preferences') ?>">
1490cb66f86SGreg Roach                        <?php if ($module instanceof ModuleConfigInterface) : ?>
1508d6560c4SGreg Roach                            <?php if ($module->isEnabled()) : ?>
1510cb66f86SGreg Roach                                <a href="<?= e($module->getConfigLink()) ?>" title="<?= I18N::translate('Preferences') ?>">
1520cb66f86SGreg Roach                                    <?= view('icons/preferences') ?>
153315eb316SGreg Roach                                    <span class="visually-hidden">
1540cb66f86SGreg Roach                                        <?= I18N::translate('Preferences') ?>
1550cb66f86SGreg Roach                                    </span>
1560cb66f86SGreg Roach                                </a>
1578d6560c4SGreg Roach                            <?php else : ?>
1588d6560c4SGreg Roach                                <?= view('icons/preferences') ?>
1598d6560c4SGreg Roach                            <?php endif ?>
1600cb66f86SGreg Roach                        <?php endif ?>
1610cb66f86SGreg Roach                    </td>
1620cb66f86SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Menu') ?>">
163dd6b2bfcSGreg Roach                        <?php if ($module instanceof ModuleMenuInterface) : ?>
164dd6b2bfcSGreg Roach                            <?= view('icons/menu') ?>
165315eb316SGreg Roach                            <span class="visually-hidden"><?= I18N::translate('Menu') ?></span>
166dd6b2bfcSGreg Roach                        <?php else : ?>
167dd6b2bfcSGreg Roach                            -
168dd6b2bfcSGreg Roach                        <?php endif ?>
169dd6b2bfcSGreg Roach                    </td>
1700cb66f86SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Tab') ?>">
171dd6b2bfcSGreg Roach                        <?php if ($module instanceof ModuleTabInterface) : ?>
172dd6b2bfcSGreg Roach                            <?= view('icons/tab') ?>
173315eb316SGreg Roach                            <span class="visually-hidden"><?= I18N::translate('Tab') ?></span>
1740cb66f86SGreg Roach                        <?php else : ?>
1750cb66f86SGreg Roach                            -
176dd6b2bfcSGreg Roach                        <?php endif ?>
1770cb66f86SGreg Roach                    </td>
1780cb66f86SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Sidebar') ?>">
179dd6b2bfcSGreg Roach                        <?php if ($module instanceof ModuleSidebarInterface) : ?>
180dd6b2bfcSGreg Roach                            <?= view('icons/sidebar') ?>
181315eb316SGreg Roach                            <span class="visually-hidden"><?= I18N::translate('Sidebar') ?></span>
1820cb66f86SGreg Roach                        <?php else : ?>
1830cb66f86SGreg Roach                            -
184dd6b2bfcSGreg Roach                        <?php endif ?>
1850cb66f86SGreg Roach                    </td>
1860cb66f86SGreg Roach                    <td class="text-center text-muted">
1870cb66f86SGreg Roach                        <?php if ($module instanceof ModuleBlockInterface) : ?>
1880cb66f86SGreg Roach                            <?php if ($module->isUserBlock()) : ?>
1890cb66f86SGreg Roach                                <span title="<?= I18N::translate('My page') ?>">
190dd6b2bfcSGreg Roach                                    <?= view('icons/block-user') ?>
1910cb66f86SGreg Roach                                </span>
192315eb316SGreg Roach                                <span class="visually-hidden">
1930cb66f86SGreg Roach                                    <?= I18N::translate('My page') ?>
1940cb66f86SGreg Roach                                </span>
195dd6b2bfcSGreg Roach                            <?php endif ?>
1960cb66f86SGreg Roach
1970cb66f86SGreg Roach                            <?php if ($module->isTreeBlock()) : ?>
1980cb66f86SGreg Roach                                <span title="<?= I18N::translate('Home page') ?>">
199dd6b2bfcSGreg Roach                                    <?= view('icons/block-tree') ?>
2000cb66f86SGreg Roach                                </span>
201315eb316SGreg Roach                                <span class="visually-hidden">
2020cb66f86SGreg Roach                                    <?= I18N::translate('Home page') ?>
2030cb66f86SGreg Roach                                </span>
204dd6b2bfcSGreg Roach                            <?php endif ?>
2050cb66f86SGreg Roach                        <?php else : ?>
2060cb66f86SGreg Roach                            -
2070cb66f86SGreg Roach                        <?php endif ?>
2080cb66f86SGreg Roach                    </td>
2090cb66f86SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Chart') ?>">
210dd6b2bfcSGreg Roach                        <?php if ($module instanceof ModuleChartInterface) : ?>
211dd6b2bfcSGreg Roach                            <?= view('icons/chart') ?>
212315eb316SGreg Roach                            <span class="visually-hidden"><?= I18N::translate('Chart') ?></span>
2130cb66f86SGreg Roach                        <?php else : ?>
2140cb66f86SGreg Roach                            -
215dd6b2bfcSGreg Roach                        <?php endif ?>
2160cb66f86SGreg Roach                    </td>
21767992b6aSRichard Cissee                    <td class="text-center text-muted" title="<?= I18N::translate('List') ?>">
21867992b6aSRichard Cissee                        <?php if ($module instanceof ModuleListInterface) : ?>
21967992b6aSRichard Cissee                            <?= view('icons/list') ?>
220315eb316SGreg Roach                            <span class="visually-hidden"><?= I18N::translate('List') ?></span>
22167992b6aSRichard Cissee                        <?php else : ?>
22267992b6aSRichard Cissee                            -
22367992b6aSRichard Cissee                        <?php endif ?>
22467992b6aSRichard Cissee                    </td>
2250cb66f86SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Report') ?>">
226dd6b2bfcSGreg Roach                        <?php if ($module instanceof ModuleReportInterface) : ?>
227dd6b2bfcSGreg Roach                            <?= view('icons/report') ?>
228315eb316SGreg Roach                            <span class="visually-hidden"><?= I18N::translate('Report') ?></span>
2290cb66f86SGreg Roach                        <?php else : ?>
2300cb66f86SGreg Roach                            -
231dd6b2bfcSGreg Roach                        <?php endif ?>
2320cb66f86SGreg Roach                    </td>
23333c34396SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Footer') ?>">
23433c34396SGreg Roach                        <?php if ($module instanceof ModuleFooterInterface) : ?>
23533c34396SGreg Roach                            <?= view('icons/footer') ?>
236315eb316SGreg Roach                            <span class="visually-hidden"><?= I18N::translate('Footer') ?></span>
23733c34396SGreg Roach                        <?php else : ?>
23833c34396SGreg Roach                            -
23933c34396SGreg Roach                        <?php endif ?>
24033c34396SGreg Roach                    </td>
2419e5cb8c9SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Tracking and analytics') ?>">
2429e5cb8c9SGreg Roach                        <?php if ($module instanceof ModuleAnalyticsInterface) : ?>
2439e5cb8c9SGreg Roach                            <?= view('icons/analytics') ?>
244315eb316SGreg Roach                            <span class="visually-hidden"><?= I18N::translate('Tracking and analytics') ?></span>
2459e5cb8c9SGreg Roach                        <?php else : ?>
2469e5cb8c9SGreg Roach                            -
2479e5cb8c9SGreg Roach                        <?php endif ?>
2489e5cb8c9SGreg Roach                    </td>
249f3244202SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Historic events') ?>">
250f3244202SGreg Roach                        <?php if ($module instanceof ModuleHistoricEventsInterface) : ?>
251f3244202SGreg Roach                            <?= view('icons/history') ?>
252315eb316SGreg Roach                            <span class="visually-hidden"><?= I18N::translate('Historic events') ?></span>
253f3244202SGreg Roach                        <?php else : ?>
254f3244202SGreg Roach                            -
255f3244202SGreg Roach                        <?php endif ?>
256f3244202SGreg Roach                    </td>
25711eb8581SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Theme') ?>">
258dd6b2bfcSGreg Roach                        <?php if ($module instanceof ModuleThemeInterface) : ?>
259dd6b2bfcSGreg Roach                            <?= view('icons/theme') ?>
260315eb316SGreg Roach                            <span class="visually-hidden"><?= I18N::translate('Theme') ?></span>
2610cb66f86SGreg Roach                        <?php else : ?>
2620cb66f86SGreg Roach                            -
263dd6b2bfcSGreg Roach                        <?php endif ?>
264dd6b2bfcSGreg Roach                    </td>
26511eb8581SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Language') ?>">
26611eb8581SGreg Roach                        <?php if ($module instanceof ModuleLanguageInterface) : ?>
26711eb8581SGreg Roach                            <?= view('icons/language') ?>
268315eb316SGreg Roach                            <span class="visually-hidden"><?= I18N::translate('Language') ?></span>
26911eb8581SGreg Roach                        <?php else : ?>
27011eb8581SGreg Roach                            -
27111eb8581SGreg Roach                        <?php endif ?>
27211eb8581SGreg Roach                    </td>
273dd6b2bfcSGreg Roach                </tr>
274dd6b2bfcSGreg Roach            <?php endforeach ?>
275dd6b2bfcSGreg Roach        </tbody>
276dd6b2bfcSGreg Roach    </table>
277*81443e3cSGreg Roach
278dd6b2bfcSGreg Roach    <button class="btn btn-primary" type="submit">
279dd6b2bfcSGreg Roach        <?= view('icons/save') ?>
280*81443e3cSGreg Roach        <?= I18N::translate('save') ?>
281*81443e3cSGreg Roach    </button>
282*81443e3cSGreg Roach
283*81443e3cSGreg Roach    <?= csrf_field() ?>
284dd6b2bfcSGreg Roach</form>
285dd6b2bfcSGreg Roach
286dd6b2bfcSGreg Roach<?php View::push('javascript') ?>
287dd6b2bfcSGreg Roach<script>
288dd6b2bfcSGreg Roach  'use strict';
289dd6b2bfcSGreg Roach
290b6c326d8SGreg Roach  $(".table-module-administration").dataTable();
291dd6b2bfcSGreg Roach</script>
292dd6b2bfcSGreg Roach<?php View::endpush() ?>
293