xref: /webtrees/resources/views/admin/modules.phtml (revision f70ab68b72f0a7e3678a4d2b9d89919308945c9f)
1dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Bootstrap4; ?>
2dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\I18N; ?>
3dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Module\ModuleBlockInterface; ?>
4dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Module\ModuleChartInterface; ?>
5dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Module\ModuleConfigInterface; ?>
69cad7645SGreg Roach<?php use Fisharebest\Webtrees\Module\ModuleCustomInterface; ?>
7dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Module\ModuleMenuInterface; ?>
8dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Module\ModuleReportInterface; ?>
9dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Module\ModuleSidebarInterface; ?>
10dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Module\ModuleTabInterface; ?>
11dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Module\ModuleThemeInterface; ?>
12dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\View; ?>
13dd6b2bfcSGreg Roach
14dd6b2bfcSGreg Roach<?= view('components/breadcrumbs', ['links' => [route('admin-control-panel') => I18N::translate('Control panel'), $title]]) ?>
15dd6b2bfcSGreg Roach
16dd6b2bfcSGreg Roach<h1><?= $title ?></h1>
17dd6b2bfcSGreg Roach
18dd6b2bfcSGreg Roach<?php foreach ($deleted_modules as $module_name) : ?>
19dd6b2bfcSGreg Roach    <div class="alert alert-warning" role="alert">
20dd6b2bfcSGreg Roach        <form action="<?= e(route('admin-delete-module-settings')) ?>" class="form-inline" method="POST">
21dd6b2bfcSGreg Roach            <?= csrf_field() ?>
22dd6b2bfcSGreg Roach            <input type="hidden" name="module_name" value="<?= $module_name ?>">
23dd6b2bfcSGreg Roach            <?= I18N::translate('Preferences exist for the module “%s”, but this module no longer exists.', $module_name) ?>
24dd6b2bfcSGreg Roach            <button type="submit" class="btn btn-secondary text-wrap">
25dd6b2bfcSGreg Roach                <?= I18N::translate('Delete the preferences for this module.') ?>
26dd6b2bfcSGreg Roach            </button>
27dd6b2bfcSGreg Roach            </form>
28dd6b2bfcSGreg Roach    </div>
29dd6b2bfcSGreg Roach<?php endforeach ?>
30dd6b2bfcSGreg Roach
31*f70ab68bSGreg Roach<form method="POST">
32dd6b2bfcSGreg Roach    <input type="hidden" name="route" value="admin-update-module-status">
33dd6b2bfcSGreg Roach    <?= csrf_field() ?>
34dd6b2bfcSGreg Roach    <table class="table table-bordered table-hover table-sm table-module-administration" data-info="false" data-paging="false" data-state-save="true">
35dd6b2bfcSGreg Roach        <caption class="sr-only">
36dd6b2bfcSGreg Roach            <?= I18N::translate('Module administration') ?>
37dd6b2bfcSGreg Roach        </caption>
38dd6b2bfcSGreg Roach        <thead>
39dd6b2bfcSGreg Roach            <tr>
40dd6b2bfcSGreg Roach                <th>
41dd6b2bfcSGreg Roach                    <?= I18N::translate('Module') ?>
42dd6b2bfcSGreg Roach                </th>
43dd6b2bfcSGreg Roach                <th>
44dd6b2bfcSGreg Roach                    <?= I18N::translate('Enabled') ?>
45dd6b2bfcSGreg Roach                </th>
460cb66f86SGreg Roach                <th data-orderable="false">
47dd6b2bfcSGreg Roach                    <?= I18N::translate('Description') ?>
48dd6b2bfcSGreg Roach                </th>
490cb66f86SGreg Roach                <th title="<?= I18N::translate('Preferences') ?>">
500cb66f86SGreg Roach                    <?= view('icons/preferences') ?>
510cb66f86SGreg Roach                    <span class="sr-only"><?= I18N::translate('Preferences') ?></span>
52dd6b2bfcSGreg Roach                </th>
530cb66f86SGreg Roach                <th title="<?= I18N::translate('Menus') ?>">
540cb66f86SGreg Roach                    <?= view('icons/menu') ?>
550cb66f86SGreg Roach                    <span class="sr-only"><?= I18N::translate('Menus') ?></span>
56dd6b2bfcSGreg Roach                </th>
570cb66f86SGreg Roach                <th title="<?= I18N::translate('Tabs') ?>">
580cb66f86SGreg Roach                    <?= view('icons/tab') ?>
590cb66f86SGreg Roach                    <span class="sr-only"><?= I18N::translate('Tabs') ?></span>
60dd6b2bfcSGreg Roach                </th>
610cb66f86SGreg Roach                <th title="<?= I18N::translate('Sidebars') ?>">
620cb66f86SGreg Roach                    <?= view('icons/sidebar') ?>
630cb66f86SGreg Roach                    <span class="sr-only"><?= I18N::translate('Sidebars') ?></span>
64dd6b2bfcSGreg Roach                </th>
650cb66f86SGreg Roach                <th title="<?= I18N::translate('Blocks') ?>">
660cb66f86SGreg Roach                    <?= view('icons/block') ?>
670cb66f86SGreg Roach                    <span class="sr-only"><?= I18N::translate('Blocks') ?></span>
68dd6b2bfcSGreg Roach                </th>
690cb66f86SGreg Roach                <th title="<?= I18N::translate('Charts') ?>">
700cb66f86SGreg Roach                    <?= view('icons/chart') ?>
710cb66f86SGreg Roach                    <span class="sr-only"><?= I18N::translate('Charts') ?></span>
72dd6b2bfcSGreg Roach                </th>
730cb66f86SGreg Roach                <th title="<?= I18N::translate('Reports') ?>">
740cb66f86SGreg Roach                    <?= view('icons/report') ?>
750cb66f86SGreg Roach                    <span class="sr-only"><?= I18N::translate('Reports') ?></span>
76dd6b2bfcSGreg Roach                </th>
770cb66f86SGreg Roach                <th class="d-none" title="<?= I18N::translate('Themes') ?>">
780cb66f86SGreg Roach                    <?= view('icons/theme') ?>
790cb66f86SGreg Roach                    <span class="sr-only"><?= I18N::translate('Themes') ?></span>
80dd6b2bfcSGreg Roach                </th>
81dd6b2bfcSGreg Roach            </tr>
82dd6b2bfcSGreg Roach        </thead>
830cb66f86SGreg Roach
84dd6b2bfcSGreg Roach        <tbody>
8549a243cbSGreg Roach            <?php foreach ($modules as $module) : ?>
86dd6b2bfcSGreg Roach                <tr>
870cb66f86SGreg Roach                    <th scope="row" dir="auto">
8849a243cbSGreg Roach                        <?= $module->title() ?>
89dd6b2bfcSGreg Roach                    </th>
9049a243cbSGreg Roach                    <td class="text-center" data-sort="<?= $module->isEnabled() ?>">
91677aaceaSGreg Roach                        <?= Bootstrap4::checkbox('', false, ['name' => 'status-' . $module->name(), 'checked' => $module->isEnabled()]) ?>
92dd6b2bfcSGreg Roach                    </td>
930cb66f86SGreg Roach                    <td>
9449a243cbSGreg Roach                        <?= $module->description() ?>
959cad7645SGreg Roach                        <?php if ($module instanceof ModuleCustomInterface) : ?>
96dd6b2bfcSGreg Roach                            <br>
97dd6b2bfcSGreg Roach                            <?= view('icons/warning') ?>
98dd6b2bfcSGreg Roach                            <?= I18N::translate('Custom module') ?>
99dd6b2bfcSGreg Roach                            <?php if ($module::CUSTOM_VERSION) : ?>
100dd6b2bfcSGreg Roach                                - <?= I18N::translate('Version') ?> <?= $module::CUSTOM_VERSION ?>
101dd6b2bfcSGreg Roach                            <?php endif ?>
102dd6b2bfcSGreg Roach                            <?php if ($module::CUSTOM_WEBSITE) : ?>
103dd6b2bfcSGreg Roach                                - <a href="<?= $module::CUSTOM_WEBSITE ?>">
104dd6b2bfcSGreg Roach                                    <?= $module::CUSTOM_WEBSITE ?>
105dd6b2bfcSGreg Roach                                </a>
106dd6b2bfcSGreg Roach                            <?php endif ?>
107dd6b2bfcSGreg Roach                        <?php endif ?>
108dd6b2bfcSGreg Roach                    </td>
1090cb66f86SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Preferences') ?>">
1100cb66f86SGreg Roach                        <?php if ($module instanceof ModuleConfigInterface) : ?>
1110cb66f86SGreg Roach                            <a href="<?= e($module->getConfigLink()) ?>" title="<?= I18N::translate('Preferences') ?>">
1120cb66f86SGreg Roach                                <?= view('icons/preferences') ?>
1130cb66f86SGreg Roach                                <span class="sr-only">
1140cb66f86SGreg Roach                                    <?= I18N::translate('Preferences') ?>
1150cb66f86SGreg Roach                                </span>
1160cb66f86SGreg Roach                            </a>
1170cb66f86SGreg Roach                        <?php endif ?>
1180cb66f86SGreg Roach                    </td>
1190cb66f86SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Menu') ?>">
120dd6b2bfcSGreg Roach                        <?php if ($module instanceof ModuleMenuInterface) : ?>
121dd6b2bfcSGreg Roach                            <?= view('icons/menu') ?>
122dd6b2bfcSGreg Roach                            <span class="sr-only"><?= I18N::translate('Menu') ?></span>
123dd6b2bfcSGreg Roach                        <?php else : ?>
124dd6b2bfcSGreg Roach                            -
125dd6b2bfcSGreg Roach                        <?php endif ?>
126dd6b2bfcSGreg Roach                    </td>
1270cb66f86SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Tab') ?>">
128dd6b2bfcSGreg Roach                        <?php if ($module instanceof ModuleTabInterface) : ?>
129dd6b2bfcSGreg Roach                            <?= view('icons/tab') ?>
130dd6b2bfcSGreg Roach                            <span class="sr-only"><?= I18N::translate('Tab') ?></span>
1310cb66f86SGreg Roach                        <?php else : ?>
1320cb66f86SGreg Roach                            -
133dd6b2bfcSGreg Roach                        <?php endif ?>
1340cb66f86SGreg Roach                    </td>
1350cb66f86SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Sidebar') ?>">
136dd6b2bfcSGreg Roach                        <?php if ($module instanceof ModuleSidebarInterface) : ?>
137dd6b2bfcSGreg Roach                            <?= view('icons/sidebar') ?>
138dd6b2bfcSGreg Roach                            <span class="sr-only"><?= I18N::translate('Sidebar') ?></span>
1390cb66f86SGreg Roach                        <?php else : ?>
1400cb66f86SGreg Roach                            -
141dd6b2bfcSGreg Roach                        <?php endif ?>
1420cb66f86SGreg Roach                    </td>
1430cb66f86SGreg Roach                    <td class="text-center text-muted">
1440cb66f86SGreg Roach                        <?php if ($module instanceof ModuleBlockInterface) : ?>
1450cb66f86SGreg Roach                            <?php if ($module->isUserBlock()) : ?>
1460cb66f86SGreg Roach                                <span title="<?= I18N::translate('My page') ?>">
147dd6b2bfcSGreg Roach                                    <?= view('icons/block-user') ?>
1480cb66f86SGreg Roach                                </span>
1490cb66f86SGreg Roach                                <span class="sr-only">
1500cb66f86SGreg Roach                                    <?= I18N::translate('My page') ?>
1510cb66f86SGreg Roach                                </span>
152dd6b2bfcSGreg Roach                            <?php endif ?>
1530cb66f86SGreg Roach
1540cb66f86SGreg Roach                            <?php if ($module->isTreeBlock()) : ?>
1550cb66f86SGreg Roach                                <span title="<?= I18N::translate('Home page') ?>">
156dd6b2bfcSGreg Roach                                    <?= view('icons/block-tree') ?>
1570cb66f86SGreg Roach                                </span>
1580cb66f86SGreg Roach                                <span class="sr-only">
1590cb66f86SGreg Roach                                    <?= I18N::translate('Home page') ?>
1600cb66f86SGreg Roach                                </span>
161dd6b2bfcSGreg Roach                            <?php endif ?>
1620cb66f86SGreg Roach                        <?php else : ?>
1630cb66f86SGreg Roach                            -
1640cb66f86SGreg Roach                        <?php endif ?>
1650cb66f86SGreg Roach                    </td>
1660cb66f86SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Chart') ?>">
167dd6b2bfcSGreg Roach                        <?php if ($module instanceof ModuleChartInterface) : ?>
168dd6b2bfcSGreg Roach                            <?= view('icons/chart') ?>
169dd6b2bfcSGreg Roach                            <span class="sr-only"><?= I18N::translate('Chart') ?></span>
1700cb66f86SGreg Roach                        <?php else : ?>
1710cb66f86SGreg Roach                            -
172dd6b2bfcSGreg Roach                        <?php endif ?>
1730cb66f86SGreg Roach                    </td>
1740cb66f86SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Report') ?>">
175dd6b2bfcSGreg Roach                        <?php if ($module instanceof ModuleReportInterface) : ?>
176dd6b2bfcSGreg Roach                            <?= view('icons/report') ?>
177dd6b2bfcSGreg Roach                            <span class="sr-only"><?= I18N::translate('Report') ?></span>
1780cb66f86SGreg Roach                        <?php else : ?>
1790cb66f86SGreg Roach                            -
180dd6b2bfcSGreg Roach                        <?php endif ?>
1810cb66f86SGreg Roach                    </td>
1820cb66f86SGreg Roach                    <td class="text-center text-muted d-none" title="<?= I18N::translate('Theme') ?>">
183dd6b2bfcSGreg Roach                        <?php if ($module instanceof ModuleThemeInterface) : ?>
184dd6b2bfcSGreg Roach                            <?= view('icons/theme') ?>
185dd6b2bfcSGreg Roach                            <span class="sr-only"><?= I18N::translate('Theme') ?></span>
1860cb66f86SGreg Roach                        <?php else : ?>
1870cb66f86SGreg Roach                            -
188dd6b2bfcSGreg Roach                        <?php endif ?>
189dd6b2bfcSGreg Roach                    </td>
190dd6b2bfcSGreg Roach                </tr>
191dd6b2bfcSGreg Roach            <?php endforeach ?>
192dd6b2bfcSGreg Roach        </tbody>
193dd6b2bfcSGreg Roach    </table>
194dd6b2bfcSGreg Roach    <button class="btn btn-primary" type="submit">
195dd6b2bfcSGreg Roach        <?= view('icons/save') ?>
196dd6b2bfcSGreg Roach        <?= I18N::translate('save') ?></button>
197dd6b2bfcSGreg Roach</form>
198dd6b2bfcSGreg Roach
199dd6b2bfcSGreg Roach<?php View::push('javascript') ?>
200dd6b2bfcSGreg Roach<script>
201dd6b2bfcSGreg Roach  'use strict';
202dd6b2bfcSGreg Roach
203dd6b2bfcSGreg Roach  $(".table-module-administration").dataTable({<?= I18N::datatablesI18N() ?>});
204dd6b2bfcSGreg Roach</script>
205dd6b2bfcSGreg Roach<?php View::endpush() ?>
206