10c0910bfSGreg Roach<?php 2dd6b2bfcSGreg Roach 3*10e06497SGreg Roachdeclare(strict_types=1); 4*10e06497SGreg Roach 50c0910bfSGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\ControlPanel; 69f667ff2SGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\ModuleDeleteSettings; 79f667ff2SGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\ModulesAllAction; 80c0910bfSGreg Roachuse Fisharebest\Webtrees\I18N; 90c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleAnalyticsInterface; 100c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleBlockInterface; 110c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleChartInterface; 120c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleConfigInterface; 130c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleCustomInterface; 147bb2799cSGreg Roachuse Fisharebest\Webtrees\Module\ModuleDataFixInterface; 150c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleExternalUrlInterface; 160c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleFooterInterface; 170c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleHistoricEventsInterface; 189f667ff2SGreg Roachuse Fisharebest\Webtrees\Module\ModuleInterface; 190c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleLanguageInterface; 200c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleListInterface; 210c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleMenuInterface; 220c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleReportInterface; 230c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleSidebarInterface; 240c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleTabInterface; 250c0910bfSGreg Roachuse Fisharebest\Webtrees\Module\ModuleThemeInterface; 260c0910bfSGreg Roachuse Fisharebest\Webtrees\View; 279f667ff2SGreg Roachuse Illuminate\Support\Collection; 289f667ff2SGreg Roach 299f667ff2SGreg Roach/** 3036779af1SGreg Roach * @var Collection<int,string> $deleted_modules 3136779af1SGreg Roach * @var Collection<int,ModuleInterface> $modules 329f667ff2SGreg Roach * @var string $title 339f667ff2SGreg Roach */ 340c0910bfSGreg Roach 350c0910bfSGreg Roach?> 360c0910bfSGreg Roach 370c0910bfSGreg Roach<?= view('components/breadcrumbs', ['links' => [route(ControlPanel::class) => I18N::translate('Control panel'), $title]]) ?> 38dd6b2bfcSGreg Roach 39dd6b2bfcSGreg Roach<h1><?= $title ?></h1> 40dd6b2bfcSGreg Roach 41dd6b2bfcSGreg Roach<?php foreach ($deleted_modules as $module_name) : ?> 42dd6b2bfcSGreg Roach <div class="alert alert-warning" role="alert"> 43315eb316SGreg Roach <form method="post" action="<?= e(route(ModuleDeleteSettings::class)) ?>"> 44dd6b2bfcSGreg Roach <input type="hidden" name="module_name" value="<?= $module_name ?>"> 4581443e3cSGreg Roach 46dd6b2bfcSGreg Roach <?= I18N::translate('Preferences exist for the module “%s”, but this module no longer exists.', $module_name) ?> 4781443e3cSGreg Roach 4897c22350SGreg Roach <button type="submit" class="btn btn-secondary"> 49dd6b2bfcSGreg Roach <?= I18N::translate('Delete the preferences for this module.') ?> 50dd6b2bfcSGreg Roach </button> 5181443e3cSGreg Roach 5281443e3cSGreg Roach <?= csrf_field() ?> 53dd6b2bfcSGreg Roach </form> 54dd6b2bfcSGreg Roach </div> 55dd6b2bfcSGreg Roach<?php endforeach ?> 56dd6b2bfcSGreg Roach 579f667ff2SGreg Roach<form method="post" action="<?= e(route(ModulesAllAction::class)) ?>"> 58b6c326d8SGreg Roach <table class="table table-bordered table-hover table-sm table-module-administration" 59b6c326d8SGreg Roach <?= view('lists/datatables-attributes') ?> 60b6c326d8SGreg Roach data-info="false" 61b6c326d8SGreg Roach data-paging="false" 62b6c326d8SGreg Roach data-filter="false" 63b6c326d8SGreg Roach > 64315eb316SGreg Roach <caption class="visually-hidden"> 65dd6b2bfcSGreg Roach <?= I18N::translate('Module administration') ?> 66dd6b2bfcSGreg Roach </caption> 67dd6b2bfcSGreg Roach <thead> 68dd6b2bfcSGreg Roach <tr> 69dd6b2bfcSGreg Roach <th> 70dd6b2bfcSGreg Roach <?= I18N::translate('Module') ?> 71dd6b2bfcSGreg Roach </th> 72dd6b2bfcSGreg Roach <th> 73dd6b2bfcSGreg Roach <?= I18N::translate('Enabled') ?> 74dd6b2bfcSGreg Roach </th> 750cb66f86SGreg Roach <th data-orderable="false"> 76dd6b2bfcSGreg Roach <?= I18N::translate('Description') ?> 77dd6b2bfcSGreg Roach </th> 780cb66f86SGreg Roach <th title="<?= I18N::translate('Preferences') ?>"> 790cb66f86SGreg Roach <?= view('icons/preferences') ?> 80315eb316SGreg Roach <span class="visually-hidden"><?= I18N::translate('Preferences') ?></span> 81dd6b2bfcSGreg Roach </th> 820cb66f86SGreg Roach <th title="<?= I18N::translate('Menus') ?>"> 830cb66f86SGreg Roach <?= view('icons/menu') ?> 84315eb316SGreg Roach <span class="visually-hidden"><?= I18N::translate('Menus') ?></span> 85dd6b2bfcSGreg Roach </th> 860cb66f86SGreg Roach <th title="<?= I18N::translate('Tabs') ?>"> 870cb66f86SGreg Roach <?= view('icons/tab') ?> 88315eb316SGreg Roach <span class="visually-hidden"><?= I18N::translate('Tabs') ?></span> 89dd6b2bfcSGreg Roach </th> 900cb66f86SGreg Roach <th title="<?= I18N::translate('Sidebars') ?>"> 910cb66f86SGreg Roach <?= view('icons/sidebar') ?> 92315eb316SGreg Roach <span class="visually-hidden"><?= I18N::translate('Sidebars') ?></span> 93dd6b2bfcSGreg Roach </th> 940cb66f86SGreg Roach <th title="<?= I18N::translate('Blocks') ?>"> 950cb66f86SGreg Roach <?= view('icons/block') ?> 96315eb316SGreg Roach <span class="visually-hidden"><?= I18N::translate('Blocks') ?></span> 97dd6b2bfcSGreg Roach </th> 987bb2799cSGreg Roach <th title="<?= I18N::translate('Data fixes') ?>"> 997bb2799cSGreg Roach <?= view('icons/data-fix') ?> 1007bb2799cSGreg Roach <span class="visually-hidden"><?= I18N::translate('Data fixes') ?></span> 1017bb2799cSGreg Roach </th> 1020cb66f86SGreg Roach <th title="<?= I18N::translate('Charts') ?>"> 1030cb66f86SGreg Roach <?= view('icons/chart') ?> 104315eb316SGreg Roach <span class="visually-hidden"><?= I18N::translate('Charts') ?></span> 105dd6b2bfcSGreg Roach </th> 10667992b6aSRichard Cissee <th title="<?= I18N::translate('Lists') ?>"> 10767992b6aSRichard Cissee <?= view('icons/list') ?> 108315eb316SGreg Roach <span class="visually-hidden"><?= I18N::translate('Lists') ?></span> 10967992b6aSRichard Cissee </th> 1100cb66f86SGreg Roach <th title="<?= I18N::translate('Reports') ?>"> 1110cb66f86SGreg Roach <?= view('icons/report') ?> 112315eb316SGreg Roach <span class="visually-hidden"><?= I18N::translate('Reports') ?></span> 113dd6b2bfcSGreg Roach </th> 11433c34396SGreg Roach <th title="<?= I18N::translate('Footers') ?>"> 11533c34396SGreg Roach <?= view('icons/footer') ?> 116315eb316SGreg Roach <span class="visually-hidden"><?= I18N::translate('Footers') ?></span> 11733c34396SGreg Roach </th> 1189e5cb8c9SGreg Roach <th title="<?= I18N::translate('Tracking and analytics') ?>"> 1199e5cb8c9SGreg Roach <?= view('icons/analytics') ?> 120315eb316SGreg Roach <span class="visually-hidden"><?= I18N::translate('Tracking and analytics') ?></span> 1219e5cb8c9SGreg Roach </th> 122f3244202SGreg Roach <th title="<?= I18N::translate('Historic events') ?>"> 123f3244202SGreg Roach <?= view('icons/history') ?> 124315eb316SGreg Roach <span class="visually-hidden"><?= I18N::translate('Historic events') ?></span> 125f3244202SGreg Roach </th> 12611eb8581SGreg Roach <th title="<?= I18N::translate('Themes') ?>"> 1270cb66f86SGreg Roach <?= view('icons/theme') ?> 128315eb316SGreg Roach <span class="visually-hidden"><?= I18N::translate('Themes') ?></span> 129dd6b2bfcSGreg Roach </th> 13011eb8581SGreg Roach <th title="<?= I18N::translate('Languages') ?>"> 13111eb8581SGreg Roach <?= view('icons/language') ?> 132315eb316SGreg Roach <span class="visually-hidden"><?= I18N::translate('Languages') ?></span> 13311eb8581SGreg Roach </th> 134dd6b2bfcSGreg Roach </tr> 135dd6b2bfcSGreg Roach </thead> 1360cb66f86SGreg Roach 137dd6b2bfcSGreg Roach <tbody> 13849a243cbSGreg Roach <?php foreach ($modules as $module) : ?> 139dd6b2bfcSGreg Roach <tr> 1400cb66f86SGreg Roach <th scope="row" dir="auto"> 1417b30610bSGreg Roach <?= $module instanceof ModuleCustomInterface ? $module->customTranslations(I18N::languageTag())[$module->title()] ?? $module->title() : $module->title() ?> 142dd6b2bfcSGreg Roach </th> 14349a243cbSGreg Roach <td class="text-center" data-sort="<?= $module->isEnabled() ?>"> 144b6c326d8SGreg Roach <?= view('components/checkbox', ['label' => '', 'name' => 'status-' . $module->name(), 'checked' => $module->isEnabled()]) ?> 145dd6b2bfcSGreg Roach </td> 1460cb66f86SGreg Roach <td> 1477b30610bSGreg Roach <?= $module instanceof ModuleCustomInterface ? $module->customTranslations(I18N::languageTag())[$module->description()] ?? $module->description() : $module->description() ?> 1489cad7645SGreg Roach <?php if ($module instanceof ModuleCustomInterface) : ?> 1491bfef740SGreg Roach <?= view('admin/custom-module-info', ['module' => $module]) ?> 150dd6b2bfcSGreg Roach <?php endif ?> 1518e5c5efeSGreg Roach <?php if ($module instanceof ModuleExternalUrlInterface) : ?> 1521bfef740SGreg Roach <?= view('admin/external-module-info', ['module' => $module]) ?> 1538e5c5efeSGreg Roach <?php endif ?> 154dd6b2bfcSGreg Roach </td> 1550cb66f86SGreg Roach <td class="text-center text-muted" title="<?= I18N::translate('Preferences') ?>"> 1560cb66f86SGreg Roach <?php if ($module instanceof ModuleConfigInterface) : ?> 1578d6560c4SGreg Roach <?php if ($module->isEnabled()) : ?> 1580cb66f86SGreg Roach <a href="<?= e($module->getConfigLink()) ?>" title="<?= I18N::translate('Preferences') ?>"> 1590cb66f86SGreg Roach <?= view('icons/preferences') ?> 160315eb316SGreg Roach <span class="visually-hidden"> 1610cb66f86SGreg Roach <?= I18N::translate('Preferences') ?> 1620cb66f86SGreg Roach </span> 1630cb66f86SGreg Roach </a> 1648d6560c4SGreg Roach <?php else : ?> 1658d6560c4SGreg Roach <?= view('icons/preferences') ?> 1668d6560c4SGreg Roach <?php endif ?> 1670cb66f86SGreg Roach <?php endif ?> 1680cb66f86SGreg Roach </td> 1690cb66f86SGreg Roach <td class="text-center text-muted" title="<?= I18N::translate('Menu') ?>"> 170dd6b2bfcSGreg Roach <?php if ($module instanceof ModuleMenuInterface) : ?> 171dd6b2bfcSGreg Roach <?= view('icons/menu') ?> 172315eb316SGreg Roach <span class="visually-hidden"><?= I18N::translate('Menu') ?></span> 173dd6b2bfcSGreg Roach <?php else : ?> 174dd6b2bfcSGreg Roach - 175dd6b2bfcSGreg Roach <?php endif ?> 176dd6b2bfcSGreg Roach </td> 1770cb66f86SGreg Roach <td class="text-center text-muted" title="<?= I18N::translate('Tab') ?>"> 178dd6b2bfcSGreg Roach <?php if ($module instanceof ModuleTabInterface) : ?> 179dd6b2bfcSGreg Roach <?= view('icons/tab') ?> 180315eb316SGreg Roach <span class="visually-hidden"><?= I18N::translate('Tab') ?></span> 1810cb66f86SGreg Roach <?php else : ?> 1820cb66f86SGreg Roach - 183dd6b2bfcSGreg Roach <?php endif ?> 1840cb66f86SGreg Roach </td> 1850cb66f86SGreg Roach <td class="text-center text-muted" title="<?= I18N::translate('Sidebar') ?>"> 186dd6b2bfcSGreg Roach <?php if ($module instanceof ModuleSidebarInterface) : ?> 187dd6b2bfcSGreg Roach <?= view('icons/sidebar') ?> 188315eb316SGreg Roach <span class="visually-hidden"><?= I18N::translate('Sidebar') ?></span> 1890cb66f86SGreg Roach <?php else : ?> 1900cb66f86SGreg Roach - 191dd6b2bfcSGreg Roach <?php endif ?> 1920cb66f86SGreg Roach </td> 1930cb66f86SGreg Roach <td class="text-center text-muted"> 1940cb66f86SGreg Roach <?php if ($module instanceof ModuleBlockInterface) : ?> 1950cb66f86SGreg Roach <?php if ($module->isUserBlock()) : ?> 1960cb66f86SGreg Roach <span title="<?= I18N::translate('My page') ?>"> 197dd6b2bfcSGreg Roach <?= view('icons/block-user') ?> 1980cb66f86SGreg Roach </span> 199315eb316SGreg Roach <span class="visually-hidden"> 2000cb66f86SGreg Roach <?= I18N::translate('My page') ?> 2010cb66f86SGreg Roach </span> 202dd6b2bfcSGreg Roach <?php endif ?> 2030cb66f86SGreg Roach 2040cb66f86SGreg Roach <?php if ($module->isTreeBlock()) : ?> 2050cb66f86SGreg Roach <span title="<?= I18N::translate('Home page') ?>"> 206dd6b2bfcSGreg Roach <?= view('icons/block-tree') ?> 2070cb66f86SGreg Roach </span> 208315eb316SGreg Roach <span class="visually-hidden"> 2090cb66f86SGreg Roach <?= I18N::translate('Home page') ?> 2100cb66f86SGreg Roach </span> 211dd6b2bfcSGreg Roach <?php endif ?> 2120cb66f86SGreg Roach <?php else : ?> 2130cb66f86SGreg Roach - 2140cb66f86SGreg Roach <?php endif ?> 2150cb66f86SGreg Roach </td> 2167bb2799cSGreg Roach <td class="text-center text-muted" title="<?= I18N::translate('Data fix') ?>"> 2177bb2799cSGreg Roach <?php if ($module instanceof ModuleDataFixInterface) : ?> 2187bb2799cSGreg Roach <?= view('icons/data-fix') ?> 2197bb2799cSGreg Roach <span class="visually-hidden"><?= I18N::translate('Data fix') ?></span> 2207bb2799cSGreg Roach <?php else : ?> 2217bb2799cSGreg Roach - 2227bb2799cSGreg Roach <?php endif ?> 2237bb2799cSGreg Roach </td> 2240cb66f86SGreg Roach <td class="text-center text-muted" title="<?= I18N::translate('Chart') ?>"> 225dd6b2bfcSGreg Roach <?php if ($module instanceof ModuleChartInterface) : ?> 226dd6b2bfcSGreg Roach <?= view('icons/chart') ?> 227315eb316SGreg Roach <span class="visually-hidden"><?= I18N::translate('Chart') ?></span> 2280cb66f86SGreg Roach <?php else : ?> 2290cb66f86SGreg Roach - 230dd6b2bfcSGreg Roach <?php endif ?> 2310cb66f86SGreg Roach </td> 23267992b6aSRichard Cissee <td class="text-center text-muted" title="<?= I18N::translate('List') ?>"> 23367992b6aSRichard Cissee <?php if ($module instanceof ModuleListInterface) : ?> 23467992b6aSRichard Cissee <?= view('icons/list') ?> 235315eb316SGreg Roach <span class="visually-hidden"><?= I18N::translate('List') ?></span> 23667992b6aSRichard Cissee <?php else : ?> 23767992b6aSRichard Cissee - 23867992b6aSRichard Cissee <?php endif ?> 23967992b6aSRichard Cissee </td> 2400cb66f86SGreg Roach <td class="text-center text-muted" title="<?= I18N::translate('Report') ?>"> 241dd6b2bfcSGreg Roach <?php if ($module instanceof ModuleReportInterface) : ?> 242dd6b2bfcSGreg Roach <?= view('icons/report') ?> 243315eb316SGreg Roach <span class="visually-hidden"><?= I18N::translate('Report') ?></span> 2440cb66f86SGreg Roach <?php else : ?> 2450cb66f86SGreg Roach - 246dd6b2bfcSGreg Roach <?php endif ?> 2470cb66f86SGreg Roach </td> 24833c34396SGreg Roach <td class="text-center text-muted" title="<?= I18N::translate('Footer') ?>"> 24933c34396SGreg Roach <?php if ($module instanceof ModuleFooterInterface) : ?> 25033c34396SGreg Roach <?= view('icons/footer') ?> 251315eb316SGreg Roach <span class="visually-hidden"><?= I18N::translate('Footer') ?></span> 25233c34396SGreg Roach <?php else : ?> 25333c34396SGreg Roach - 25433c34396SGreg Roach <?php endif ?> 25533c34396SGreg Roach </td> 2569e5cb8c9SGreg Roach <td class="text-center text-muted" title="<?= I18N::translate('Tracking and analytics') ?>"> 2579e5cb8c9SGreg Roach <?php if ($module instanceof ModuleAnalyticsInterface) : ?> 2589e5cb8c9SGreg Roach <?= view('icons/analytics') ?> 259315eb316SGreg Roach <span class="visually-hidden"><?= I18N::translate('Tracking and analytics') ?></span> 2609e5cb8c9SGreg Roach <?php else : ?> 2619e5cb8c9SGreg Roach - 2629e5cb8c9SGreg Roach <?php endif ?> 2639e5cb8c9SGreg Roach </td> 264f3244202SGreg Roach <td class="text-center text-muted" title="<?= I18N::translate('Historic events') ?>"> 265f3244202SGreg Roach <?php if ($module instanceof ModuleHistoricEventsInterface) : ?> 266f3244202SGreg Roach <?= view('icons/history') ?> 267315eb316SGreg Roach <span class="visually-hidden"><?= I18N::translate('Historic events') ?></span> 268f3244202SGreg Roach <?php else : ?> 269f3244202SGreg Roach - 270f3244202SGreg Roach <?php endif ?> 271f3244202SGreg Roach </td> 27211eb8581SGreg Roach <td class="text-center text-muted" title="<?= I18N::translate('Theme') ?>"> 273dd6b2bfcSGreg Roach <?php if ($module instanceof ModuleThemeInterface) : ?> 274dd6b2bfcSGreg Roach <?= view('icons/theme') ?> 275315eb316SGreg Roach <span class="visually-hidden"><?= I18N::translate('Theme') ?></span> 2760cb66f86SGreg Roach <?php else : ?> 2770cb66f86SGreg Roach - 278dd6b2bfcSGreg Roach <?php endif ?> 279dd6b2bfcSGreg Roach </td> 28011eb8581SGreg Roach <td class="text-center text-muted" title="<?= I18N::translate('Language') ?>"> 28111eb8581SGreg Roach <?php if ($module instanceof ModuleLanguageInterface) : ?> 28211eb8581SGreg Roach <?= view('icons/language') ?> 283315eb316SGreg Roach <span class="visually-hidden"><?= I18N::translate('Language') ?></span> 28411eb8581SGreg Roach <?php else : ?> 28511eb8581SGreg Roach - 28611eb8581SGreg Roach <?php endif ?> 28711eb8581SGreg Roach </td> 288dd6b2bfcSGreg Roach </tr> 289dd6b2bfcSGreg Roach <?php endforeach ?> 290dd6b2bfcSGreg Roach </tbody> 291dd6b2bfcSGreg Roach </table> 29281443e3cSGreg Roach 293dd6b2bfcSGreg Roach <button class="btn btn-primary" type="submit"> 294dd6b2bfcSGreg Roach <?= view('icons/save') ?> 29581443e3cSGreg Roach <?= I18N::translate('save') ?> 29681443e3cSGreg Roach </button> 29781443e3cSGreg Roach 29881443e3cSGreg Roach <?= csrf_field() ?> 299dd6b2bfcSGreg Roach</form> 300dd6b2bfcSGreg Roach 301dd6b2bfcSGreg Roach<?php View::push('javascript') ?> 302dd6b2bfcSGreg Roach<script> 303dd6b2bfcSGreg Roach 'use strict'; 304dd6b2bfcSGreg Roach 305b6c326d8SGreg Roach $(".table-module-administration").dataTable(); 306dd6b2bfcSGreg Roach</script> 307dd6b2bfcSGreg Roach<?php View::endpush() ?> 308