xref: /webtrees/resources/views/admin/modules.phtml (revision 0cb66f863d2cdb6916511594d43e7ac87a6b59bb)
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
31dd6b2bfcSGreg Roach<form action="<?= e(route('admin-update-module-status')) ?>" 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>
46*0cb66f86SGreg Roach                <th data-orderable="false">
47dd6b2bfcSGreg Roach                    <?= I18N::translate('Description') ?>
48dd6b2bfcSGreg Roach                </th>
49*0cb66f86SGreg Roach                <th title="<?= I18N::translate('Preferences') ?>">
50*0cb66f86SGreg Roach                    <?= view('icons/preferences') ?>
51*0cb66f86SGreg Roach                    <span class="sr-only"><?= I18N::translate('Preferences') ?></span>
52dd6b2bfcSGreg Roach                </th>
53*0cb66f86SGreg Roach                <th title="<?= I18N::translate('Menus') ?>">
54*0cb66f86SGreg Roach                    <?= view('icons/menu') ?>
55*0cb66f86SGreg Roach                    <span class="sr-only"><?= I18N::translate('Menus') ?></span>
56dd6b2bfcSGreg Roach                </th>
57*0cb66f86SGreg Roach                <th title="<?= I18N::translate('Tabs') ?>">
58*0cb66f86SGreg Roach                    <?= view('icons/tab') ?>
59*0cb66f86SGreg Roach                    <span class="sr-only"><?= I18N::translate('Tabs') ?></span>
60dd6b2bfcSGreg Roach                </th>
61*0cb66f86SGreg Roach                <th title="<?= I18N::translate('Sidebars') ?>">
62*0cb66f86SGreg Roach                    <?= view('icons/sidebar') ?>
63*0cb66f86SGreg Roach                    <span class="sr-only"><?= I18N::translate('Sidebars') ?></span>
64dd6b2bfcSGreg Roach                </th>
65*0cb66f86SGreg Roach                <th title="<?= I18N::translate('Blocks') ?>">
66*0cb66f86SGreg Roach                    <?= view('icons/block') ?>
67*0cb66f86SGreg Roach                    <span class="sr-only"><?= I18N::translate('Blocks') ?></span>
68dd6b2bfcSGreg Roach                </th>
69*0cb66f86SGreg Roach                <th title="<?= I18N::translate('Charts') ?>">
70*0cb66f86SGreg Roach                    <?= view('icons/chart') ?>
71*0cb66f86SGreg Roach                    <span class="sr-only"><?= I18N::translate('Charts') ?></span>
72dd6b2bfcSGreg Roach                </th>
73*0cb66f86SGreg Roach                <th title="<?= I18N::translate('Reports') ?>">
74*0cb66f86SGreg Roach                    <?= view('icons/report') ?>
75*0cb66f86SGreg Roach                    <span class="sr-only"><?= I18N::translate('Reports') ?></span>
76dd6b2bfcSGreg Roach                </th>
77*0cb66f86SGreg Roach                <th class="d-none" title="<?= I18N::translate('Themes') ?>">
78*0cb66f86SGreg Roach                    <?= view('icons/theme') ?>
79*0cb66f86SGreg Roach                    <span class="sr-only"><?= I18N::translate('Themes') ?></span>
80dd6b2bfcSGreg Roach                </th>
81dd6b2bfcSGreg Roach            </tr>
82dd6b2bfcSGreg Roach        </thead>
83*0cb66f86SGreg Roach
84dd6b2bfcSGreg Roach        <tbody>
8549a243cbSGreg Roach            <?php foreach ($modules as $module) : ?>
86dd6b2bfcSGreg Roach                <tr>
87*0cb66f86SGreg 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>
93*0cb66f86SGreg 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>
109*0cb66f86SGreg Roach                    <td class="text-center text-muted" title="<?= I18N::translate('Preferences') ?>">
110*0cb66f86SGreg Roach                        <?php if ($module instanceof ModuleConfigInterface) : ?>
111*0cb66f86SGreg Roach                            <a href="<?= e($module->getConfigLink()) ?>" title="<?= I18N::translate('Preferences') ?>">
112*0cb66f86SGreg Roach                                <?= view('icons/preferences') ?>
113*0cb66f86SGreg Roach                                <span class="sr-only">
114*0cb66f86SGreg Roach                                    <?= I18N::translate('Preferences') ?>
115*0cb66f86SGreg Roach                                </span>
116*0cb66f86SGreg Roach                            </a>
117*0cb66f86SGreg Roach                        <?php endif ?>
118*0cb66f86SGreg Roach                    </td>
119*0cb66f86SGreg 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>
127*0cb66f86SGreg 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>
131*0cb66f86SGreg Roach                        <?php else : ?>
132*0cb66f86SGreg Roach                            -
133dd6b2bfcSGreg Roach                        <?php endif ?>
134*0cb66f86SGreg Roach                    </td>
135*0cb66f86SGreg 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>
139*0cb66f86SGreg Roach                        <?php else : ?>
140*0cb66f86SGreg Roach                            -
141dd6b2bfcSGreg Roach                        <?php endif ?>
142*0cb66f86SGreg Roach                    </td>
143*0cb66f86SGreg Roach                    <td class="text-center text-muted">
144*0cb66f86SGreg Roach                        <?php if ($module instanceof ModuleBlockInterface) : ?>
145*0cb66f86SGreg Roach                            <?php if ($module->isUserBlock()) : ?>
146*0cb66f86SGreg Roach                                <span title="<?= I18N::translate('My page') ?>">
147dd6b2bfcSGreg Roach                                    <?= view('icons/block-user') ?>
148*0cb66f86SGreg Roach                                </span>
149*0cb66f86SGreg Roach                                <span class="sr-only">
150*0cb66f86SGreg Roach                                    <?= I18N::translate('My page') ?>
151*0cb66f86SGreg Roach                                </span>
152dd6b2bfcSGreg Roach                            <?php endif ?>
153*0cb66f86SGreg Roach
154*0cb66f86SGreg Roach                            <?php if ($module->isTreeBlock()) : ?>
155*0cb66f86SGreg Roach                                <span title="<?= I18N::translate('Home page') ?>">
156dd6b2bfcSGreg Roach                                    <?= view('icons/block-tree') ?>
157*0cb66f86SGreg Roach                                </span>
158*0cb66f86SGreg Roach                                <span class="sr-only">
159*0cb66f86SGreg Roach                                    <?= I18N::translate('Home page') ?>
160*0cb66f86SGreg Roach                                </span>
161dd6b2bfcSGreg Roach                            <?php endif ?>
162*0cb66f86SGreg Roach                        <?php else : ?>
163*0cb66f86SGreg Roach                            -
164*0cb66f86SGreg Roach                        <?php endif ?>
165*0cb66f86SGreg Roach                    </td>
166*0cb66f86SGreg 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>
170*0cb66f86SGreg Roach                        <?php else : ?>
171*0cb66f86SGreg Roach                            -
172dd6b2bfcSGreg Roach                        <?php endif ?>
173*0cb66f86SGreg Roach                    </td>
174*0cb66f86SGreg 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>
178*0cb66f86SGreg Roach                        <?php else : ?>
179*0cb66f86SGreg Roach                            -
180dd6b2bfcSGreg Roach                        <?php endif ?>
181*0cb66f86SGreg Roach                    </td>
182*0cb66f86SGreg 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>
186*0cb66f86SGreg Roach                        <?php else : ?>
187*0cb66f86SGreg 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