xref: /webtrees/resources/views/admin/modules.phtml (revision 0c0910bf0f275a14f35d2ccdf698f91f79e269d4)
1*0c0910bfSGreg Roach<?php
2dd6b2bfcSGreg Roach
3*0c0910bfSGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\ControlPanel;
4*0c0910bfSGreg Roachuse Fisharebest\Webtrees\I18N;
5*0c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleAnalyticsInterface;
6*0c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleBlockInterface;
7*0c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleChartInterface;
8*0c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleConfigInterface;
9*0c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleCustomInterface;
10*0c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleExternalUrlInterface;
11*0c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleFooterInterface;
12*0c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleHistoricEventsInterface;
13*0c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleLanguageInterface;
14*0c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleListInterface;
15*0c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleMenuInterface;
16*0c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleReportInterface;
17*0c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleSidebarInterface;
18*0c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleTabInterface;
19*0c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleThemeInterface;
20*0c0910bfSGreg Roachuse Fisharebest\Webtrees\View;
21*0c0910bfSGreg Roach
22*0c0910bfSGreg Roach?>
23*0c0910bfSGreg Roach
24*0c0910bfSGreg Roach<?= view('components/breadcrumbs', ['links' => [route(ControlPanel::class) => I18N::translate('Control panel'), $title]]) ?>
25dd6b2bfcSGreg Roach
26dd6b2bfcSGreg Roach<h1><?= $title ?></h1>
27dd6b2bfcSGreg Roach
28dd6b2bfcSGreg Roach<?php foreach ($deleted_modules as $module_name) : ?>
29dd6b2bfcSGreg Roach    <div class="alert alert-warning" role="alert">
3083615acfSGreg Roach        <form method="post" action="<?= e(route('delete-module-settings')) ?>" class="form-inline">
31dd6b2bfcSGreg Roach            <?= csrf_field() ?>
32dd6b2bfcSGreg Roach            <input type="hidden" name="module_name" value="<?= $module_name ?>">
33dd6b2bfcSGreg Roach            <?= I18N::translate('Preferences exist for the module “%s”, but this module no longer exists.', $module_name) ?>
3497c22350SGreg Roach            <button type="submit" class="btn btn-secondary">
35dd6b2bfcSGreg Roach                <?= I18N::translate('Delete the preferences for this module.') ?>
36dd6b2bfcSGreg Roach            </button>
37dd6b2bfcSGreg Roach        </form>
38dd6b2bfcSGreg Roach    </div>
39dd6b2bfcSGreg Roach<?php endforeach ?>
40dd6b2bfcSGreg Roach
418d6560c4SGreg Roach<form method="post">
42dd6b2bfcSGreg Roach    <?= csrf_field() ?>
43b6c326d8SGreg Roach    <table class="table table-bordered table-hover table-sm table-module-administration"
44b6c326d8SGreg Roach        <?= view('lists/datatables-attributes') ?>
45b6c326d8SGreg Roach        data-info="false"
46b6c326d8SGreg Roach        data-paging="false"
47b6c326d8SGreg Roach        data-filter="false"
48b6c326d8SGreg Roach    >
49dd6b2bfcSGreg Roach        <caption class="sr-only">
50dd6b2bfcSGreg Roach            <?= I18N::translate('Module administration') ?>
51dd6b2bfcSGreg Roach        </caption>
52dd6b2bfcSGreg Roach        <thead>
53dd6b2bfcSGreg Roach            <tr>
54dd6b2bfcSGreg Roach                <th>
55dd6b2bfcSGreg Roach                    <?= I18N::translate('Module') ?>
56dd6b2bfcSGreg Roach                </th>
57dd6b2bfcSGreg Roach                <th>
58dd6b2bfcSGreg Roach                    <?= I18N::translate('Enabled') ?>
59dd6b2bfcSGreg Roach                </th>
600cb66f86SGreg Roach                <th data-orderable="false">
61dd6b2bfcSGreg Roach                    <?= I18N::translate('Description') ?>
62dd6b2bfcSGreg Roach                </th>
630cb66f86SGreg Roach                <th title="<?= I18N::translate('Preferences') ?>">
640cb66f86SGreg Roach                    <?= view('icons/preferences') ?>
650cb66f86SGreg Roach                    <span class="sr-only"><?= I18N::translate('Preferences') ?></span>
66dd6b2bfcSGreg Roach                </th>
670cb66f86SGreg Roach                <th title="<?= I18N::translate('Menus') ?>">
680cb66f86SGreg Roach                    <?= view('icons/menu') ?>
690cb66f86SGreg Roach                    <span class="sr-only"><?= I18N::translate('Menus') ?></span>
70dd6b2bfcSGreg Roach                </th>
710cb66f86SGreg Roach                <th title="<?= I18N::translate('Tabs') ?>">
720cb66f86SGreg Roach                    <?= view('icons/tab') ?>
730cb66f86SGreg Roach                    <span class="sr-only"><?= I18N::translate('Tabs') ?></span>
74dd6b2bfcSGreg Roach                </th>
750cb66f86SGreg Roach                <th title="<?= I18N::translate('Sidebars') ?>">
760cb66f86SGreg Roach                    <?= view('icons/sidebar') ?>
770cb66f86SGreg Roach                    <span class="sr-only"><?= I18N::translate('Sidebars') ?></span>
78dd6b2bfcSGreg Roach                </th>
790cb66f86SGreg Roach                <th title="<?= I18N::translate('Blocks') ?>">
800cb66f86SGreg Roach                    <?= view('icons/block') ?>
810cb66f86SGreg Roach                    <span class="sr-only"><?= I18N::translate('Blocks') ?></span>
82dd6b2bfcSGreg Roach                </th>
830cb66f86SGreg Roach                <th title="<?= I18N::translate('Charts') ?>">
840cb66f86SGreg Roach                    <?= view('icons/chart') ?>
850cb66f86SGreg Roach                    <span class="sr-only"><?= I18N::translate('Charts') ?></span>
86dd6b2bfcSGreg Roach                </th>
8767992b6aSRichard Cissee                <th title="<?= I18N::translate('Lists') ?>">
8867992b6aSRichard Cissee                    <?= view('icons/list') ?>
8967992b6aSRichard Cissee                    <span class="sr-only"><?= I18N::translate('Lists') ?></span>
9067992b6aSRichard Cissee                </th>
910cb66f86SGreg Roach                <th title="<?= I18N::translate('Reports') ?>">
920cb66f86SGreg Roach                    <?= view('icons/report') ?>
930cb66f86SGreg Roach                    <span class="sr-only"><?= I18N::translate('Reports') ?></span>
94dd6b2bfcSGreg Roach                </th>
9533c34396SGreg Roach                <th title="<?= I18N::translate('Footers') ?>">
9633c34396SGreg Roach                    <?= view('icons/footer') ?>
9733c34396SGreg Roach                    <span class="sr-only"><?= I18N::translate('Footers') ?></span>
9833c34396SGreg Roach                </th>
999e5cb8c9SGreg Roach                <th title="<?= I18N::translate('Tracking and analytics') ?>">
1009e5cb8c9SGreg Roach                    <?= view('icons/analytics') ?>
1019e5cb8c9SGreg Roach                    <span class="sr-only"><?= I18N::translate('Tracking and analytics') ?></span>
1029e5cb8c9SGreg Roach                </th>
103f3244202SGreg Roach                <th title="<?= I18N::translate('Historic events') ?>">
104f3244202SGreg Roach                    <?= view('icons/history') ?>
105f3244202SGreg Roach                    <span class="sr-only"><?= I18N::translate('Historic events') ?></span>
106f3244202SGreg Roach                </th>
10711eb8581SGreg Roach                <th title="<?= I18N::translate('Themes') ?>">
1080cb66f86SGreg Roach                    <?= view('icons/theme') ?>
1090cb66f86SGreg Roach                    <span class="sr-only"><?= I18N::translate('Themes') ?></span>
110dd6b2bfcSGreg Roach                </th>
11111eb8581SGreg Roach                <th title="<?= I18N::translate('Languages') ?>">
11211eb8581SGreg Roach                    <?= view('icons/language') ?>
11311eb8581SGreg Roach                    <span class="sr-only"><?= I18N::translate('Languages') ?></span>
11411eb8581SGreg Roach                </th>
115dd6b2bfcSGreg Roach            </tr>
116dd6b2bfcSGreg Roach        </thead>
1170cb66f86SGreg Roach
118dd6b2bfcSGreg Roach        <tbody>
11949a243cbSGreg Roach            <?php foreach ($modules as $module) : ?>
120dd6b2bfcSGreg Roach                <tr>
1210cb66f86SGreg Roach                    <th scope="row" dir="auto">
12249a243cbSGreg Roach                        <?= $module->title() ?>
123dd6b2bfcSGreg Roach                    </th>
12449a243cbSGreg Roach                    <td class="text-center" data-sort="<?= $module->isEnabled() ?>">
125b6c326d8SGreg Roach                        <?= view('components/checkbox', ['label' => '', 'name' => 'status-' . $module->name(), 'checked' => $module->isEnabled()]) ?>
126dd6b2bfcSGreg Roach                    </td>
1270cb66f86SGreg Roach                    <td>
12849a243cbSGreg Roach                        <?= $module->description() ?>
1299cad7645SGreg Roach                        <?php if ($module instanceof ModuleCustomInterface) : ?>
1301bfef740SGreg Roach                            <?= view('admin/custom-module-info', ['module' => $module]) ?>
131dd6b2bfcSGreg Roach                        <?php endif ?>
1328e5c5efeSGreg Roach                        <?php if ($module instanceof ModuleExternalUrlInterface) : ?>
1331bfef740SGreg Roach                            <?= view('admin/external-module-info', ['module' => $module]) ?>
1348e5c5efeSGreg Roach                        <?php endif ?>
135dd6b2bfcSGreg Roach                    </td>
1360cb66f86SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Preferences') ?>">
1370cb66f86SGreg Roach                        <?php if ($module instanceof ModuleConfigInterface) : ?>
1388d6560c4SGreg Roach                            <?php if ($module->isEnabled()) : ?>
1390cb66f86SGreg Roach                                <a href="<?= e($module->getConfigLink()) ?>" title="<?= I18N::translate('Preferences') ?>">
1400cb66f86SGreg Roach                                    <?= view('icons/preferences') ?>
1410cb66f86SGreg Roach                                    <span class="sr-only">
1420cb66f86SGreg Roach                                        <?= I18N::translate('Preferences') ?>
1430cb66f86SGreg Roach                                    </span>
1440cb66f86SGreg Roach                                </a>
1458d6560c4SGreg Roach                            <?php else : ?>
1468d6560c4SGreg Roach                                <?= view('icons/preferences') ?>
1478d6560c4SGreg Roach                            <?php endif ?>
1480cb66f86SGreg Roach                        <?php endif ?>
1490cb66f86SGreg Roach                    </td>
1500cb66f86SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Menu') ?>">
151dd6b2bfcSGreg Roach                        <?php if ($module instanceof ModuleMenuInterface) : ?>
152dd6b2bfcSGreg Roach                            <?= view('icons/menu') ?>
153dd6b2bfcSGreg Roach                            <span class="sr-only"><?= I18N::translate('Menu') ?></span>
154dd6b2bfcSGreg Roach                        <?php else : ?>
155dd6b2bfcSGreg Roach                            -
156dd6b2bfcSGreg Roach                        <?php endif ?>
157dd6b2bfcSGreg Roach                    </td>
1580cb66f86SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Tab') ?>">
159dd6b2bfcSGreg Roach                        <?php if ($module instanceof ModuleTabInterface) : ?>
160dd6b2bfcSGreg Roach                            <?= view('icons/tab') ?>
161dd6b2bfcSGreg Roach                            <span class="sr-only"><?= I18N::translate('Tab') ?></span>
1620cb66f86SGreg Roach                        <?php else : ?>
1630cb66f86SGreg Roach                            -
164dd6b2bfcSGreg Roach                        <?php endif ?>
1650cb66f86SGreg Roach                    </td>
1660cb66f86SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Sidebar') ?>">
167dd6b2bfcSGreg Roach                        <?php if ($module instanceof ModuleSidebarInterface) : ?>
168dd6b2bfcSGreg Roach                            <?= view('icons/sidebar') ?>
169dd6b2bfcSGreg Roach                            <span class="sr-only"><?= I18N::translate('Sidebar') ?></span>
1700cb66f86SGreg Roach                        <?php else : ?>
1710cb66f86SGreg Roach                            -
172dd6b2bfcSGreg Roach                        <?php endif ?>
1730cb66f86SGreg Roach                    </td>
1740cb66f86SGreg Roach                    <td class="text-center text-muted">
1750cb66f86SGreg Roach                        <?php if ($module instanceof ModuleBlockInterface) : ?>
1760cb66f86SGreg Roach                            <?php if ($module->isUserBlock()) : ?>
1770cb66f86SGreg Roach                                <span title="<?= I18N::translate('My page') ?>">
178dd6b2bfcSGreg Roach                                    <?= view('icons/block-user') ?>
1790cb66f86SGreg Roach                                </span>
1800cb66f86SGreg Roach                                <span class="sr-only">
1810cb66f86SGreg Roach                                    <?= I18N::translate('My page') ?>
1820cb66f86SGreg Roach                                </span>
183dd6b2bfcSGreg Roach                            <?php endif ?>
1840cb66f86SGreg Roach
1850cb66f86SGreg Roach                            <?php if ($module->isTreeBlock()) : ?>
1860cb66f86SGreg Roach                                <span title="<?= I18N::translate('Home page') ?>">
187dd6b2bfcSGreg Roach                                    <?= view('icons/block-tree') ?>
1880cb66f86SGreg Roach                                </span>
1890cb66f86SGreg Roach                                <span class="sr-only">
1900cb66f86SGreg Roach                                    <?= I18N::translate('Home page') ?>
1910cb66f86SGreg Roach                                </span>
192dd6b2bfcSGreg Roach                            <?php endif ?>
1930cb66f86SGreg Roach                        <?php else : ?>
1940cb66f86SGreg Roach                            -
1950cb66f86SGreg Roach                        <?php endif ?>
1960cb66f86SGreg Roach                    </td>
1970cb66f86SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Chart') ?>">
198dd6b2bfcSGreg Roach                        <?php if ($module instanceof ModuleChartInterface) : ?>
199dd6b2bfcSGreg Roach                            <?= view('icons/chart') ?>
200dd6b2bfcSGreg Roach                            <span class="sr-only"><?= I18N::translate('Chart') ?></span>
2010cb66f86SGreg Roach                        <?php else : ?>
2020cb66f86SGreg Roach                            -
203dd6b2bfcSGreg Roach                        <?php endif ?>
2040cb66f86SGreg Roach                    </td>
20567992b6aSRichard Cissee                    <td class="text-center text-muted" title="<?= I18N::translate('List') ?>">
20667992b6aSRichard Cissee                        <?php if ($module instanceof ModuleListInterface) : ?>
20767992b6aSRichard Cissee                            <?= view('icons/list') ?>
20867992b6aSRichard Cissee                            <span class="sr-only"><?= I18N::translate('List') ?></span>
20967992b6aSRichard Cissee                        <?php else : ?>
21067992b6aSRichard Cissee                            -
21167992b6aSRichard Cissee                        <?php endif ?>
21267992b6aSRichard Cissee                    </td>
2130cb66f86SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Report') ?>">
214dd6b2bfcSGreg Roach                        <?php if ($module instanceof ModuleReportInterface) : ?>
215dd6b2bfcSGreg Roach                            <?= view('icons/report') ?>
216dd6b2bfcSGreg Roach                            <span class="sr-only"><?= I18N::translate('Report') ?></span>
2170cb66f86SGreg Roach                        <?php else : ?>
2180cb66f86SGreg Roach                            -
219dd6b2bfcSGreg Roach                        <?php endif ?>
2200cb66f86SGreg Roach                    </td>
22133c34396SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Footer') ?>">
22233c34396SGreg Roach                        <?php if ($module instanceof ModuleFooterInterface) : ?>
22333c34396SGreg Roach                            <?= view('icons/footer') ?>
22433c34396SGreg Roach                            <span class="sr-only"><?= I18N::translate('Footer') ?></span>
22533c34396SGreg Roach                        <?php else : ?>
22633c34396SGreg Roach                            -
22733c34396SGreg Roach                        <?php endif ?>
22833c34396SGreg Roach                    </td>
2299e5cb8c9SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Tracking and analytics') ?>">
2309e5cb8c9SGreg Roach                        <?php if ($module instanceof ModuleAnalyticsInterface) : ?>
2319e5cb8c9SGreg Roach                            <?= view('icons/analytics') ?>
2329e5cb8c9SGreg Roach                            <span class="sr-only"><?= I18N::translate('Tracking and analytics') ?></span>
2339e5cb8c9SGreg Roach                        <?php else : ?>
2349e5cb8c9SGreg Roach                            -
2359e5cb8c9SGreg Roach                        <?php endif ?>
2369e5cb8c9SGreg Roach                    </td>
237f3244202SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Historic events') ?>">
238f3244202SGreg Roach                        <?php if ($module instanceof ModuleHistoricEventsInterface) : ?>
239f3244202SGreg Roach                            <?= view('icons/history') ?>
240f3244202SGreg Roach                            <span class="sr-only"><?= I18N::translate('Historic events') ?></span>
241f3244202SGreg Roach                        <?php else : ?>
242f3244202SGreg Roach                            -
243f3244202SGreg Roach                        <?php endif ?>
244f3244202SGreg Roach                    </td>
24511eb8581SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Theme') ?>">
246dd6b2bfcSGreg Roach                        <?php if ($module instanceof ModuleThemeInterface) : ?>
247dd6b2bfcSGreg Roach                            <?= view('icons/theme') ?>
248dd6b2bfcSGreg Roach                            <span class="sr-only"><?= I18N::translate('Theme') ?></span>
2490cb66f86SGreg Roach                        <?php else : ?>
2500cb66f86SGreg Roach                            -
251dd6b2bfcSGreg Roach                        <?php endif ?>
252dd6b2bfcSGreg Roach                    </td>
25311eb8581SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Language') ?>">
25411eb8581SGreg Roach                        <?php if ($module instanceof ModuleLanguageInterface) : ?>
25511eb8581SGreg Roach                            <?= view('icons/language') ?>
25611eb8581SGreg Roach                            <span class="sr-only"><?= I18N::translate('Language') ?></span>
25711eb8581SGreg Roach                        <?php else : ?>
25811eb8581SGreg Roach                            -
25911eb8581SGreg Roach                        <?php endif ?>
26011eb8581SGreg Roach                    </td>
261dd6b2bfcSGreg Roach                </tr>
262dd6b2bfcSGreg Roach            <?php endforeach ?>
263dd6b2bfcSGreg Roach        </tbody>
264dd6b2bfcSGreg Roach    </table>
265dd6b2bfcSGreg Roach    <button class="btn btn-primary" type="submit">
266dd6b2bfcSGreg Roach        <?= view('icons/save') ?>
267dd6b2bfcSGreg Roach        <?= I18N::translate('save') ?></button>
268dd6b2bfcSGreg Roach</form>
269dd6b2bfcSGreg Roach
270dd6b2bfcSGreg Roach<?php View::push('javascript') ?>
271dd6b2bfcSGreg Roach<script>
272dd6b2bfcSGreg Roach  'use strict';
273dd6b2bfcSGreg Roach
274b6c326d8SGreg Roach  $(".table-module-administration").dataTable();
275dd6b2bfcSGreg Roach</script>
276dd6b2bfcSGreg Roach<?php View::endpush() ?>
277