1dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Bootstrap4; ?> 2dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\I18N; ?> 39e5cb8c9SGreg Roach<?php use Fisharebest\Webtrees\Module\ModuleAnalyticsInterface; ?> 4dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Module\ModuleBlockInterface; ?> 5dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Module\ModuleChartInterface; ?> 6dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Module\ModuleConfigInterface; ?> 79cad7645SGreg Roach<?php use Fisharebest\Webtrees\Module\ModuleCustomInterface; ?> 8*8e5c5efeSGreg Roach<?php use Fisharebest\Webtrees\Module\ModuleExternalUrlInterface; ?> 933c34396SGreg Roach<?php use Fisharebest\Webtrees\Module\ModuleFooterInterface; ?> 10f3244202SGreg Roach<?php use Fisharebest\Webtrees\Module\ModuleHistoricEventsInterface; ?> 11dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Module\ModuleMenuInterface; ?> 12dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Module\ModuleReportInterface; ?> 13dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Module\ModuleSidebarInterface; ?> 14dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Module\ModuleTabInterface; ?> 15dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Module\ModuleThemeInterface; ?> 16dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\View; ?> 17dd6b2bfcSGreg Roach 18dd6b2bfcSGreg Roach<?= view('components/breadcrumbs', ['links' => [route('admin-control-panel') => I18N::translate('Control panel'), $title]]) ?> 19dd6b2bfcSGreg Roach 20dd6b2bfcSGreg Roach<h1><?= $title ?></h1> 21dd6b2bfcSGreg Roach 22dd6b2bfcSGreg Roach<?php foreach ($deleted_modules as $module_name) : ?> 23dd6b2bfcSGreg Roach <div class="alert alert-warning" role="alert"> 24244d9cdfSGreg Roach <form action="<?= e(route('delete-module-settings')) ?>" class="form-inline" method="POST"> 25dd6b2bfcSGreg Roach <?= csrf_field() ?> 26dd6b2bfcSGreg Roach <input type="hidden" name="module_name" value="<?= $module_name ?>"> 27dd6b2bfcSGreg Roach <?= I18N::translate('Preferences exist for the module “%s”, but this module no longer exists.', $module_name) ?> 28dd6b2bfcSGreg Roach <button type="submit" class="btn btn-secondary text-wrap"> 29dd6b2bfcSGreg Roach <?= I18N::translate('Delete the preferences for this module.') ?> 30dd6b2bfcSGreg Roach </button> 31dd6b2bfcSGreg Roach </form> 32dd6b2bfcSGreg Roach </div> 33dd6b2bfcSGreg Roach<?php endforeach ?> 34dd6b2bfcSGreg Roach 35f70ab68bSGreg Roach<form method="POST"> 36dd6b2bfcSGreg Roach <input type="hidden" name="route" value="admin-update-module-status"> 37dd6b2bfcSGreg Roach <?= csrf_field() ?> 38dd6b2bfcSGreg Roach <table class="table table-bordered table-hover table-sm table-module-administration" data-info="false" data-paging="false" data-state-save="true"> 39dd6b2bfcSGreg Roach <caption class="sr-only"> 40dd6b2bfcSGreg Roach <?= I18N::translate('Module administration') ?> 41dd6b2bfcSGreg Roach </caption> 42dd6b2bfcSGreg Roach <thead> 43dd6b2bfcSGreg Roach <tr> 44dd6b2bfcSGreg Roach <th> 45dd6b2bfcSGreg Roach <?= I18N::translate('Module') ?> 46dd6b2bfcSGreg Roach </th> 47dd6b2bfcSGreg Roach <th> 48dd6b2bfcSGreg Roach <?= I18N::translate('Enabled') ?> 49dd6b2bfcSGreg Roach </th> 500cb66f86SGreg Roach <th data-orderable="false"> 51dd6b2bfcSGreg Roach <?= I18N::translate('Description') ?> 52dd6b2bfcSGreg Roach </th> 530cb66f86SGreg Roach <th title="<?= I18N::translate('Preferences') ?>"> 540cb66f86SGreg Roach <?= view('icons/preferences') ?> 550cb66f86SGreg Roach <span class="sr-only"><?= I18N::translate('Preferences') ?></span> 56dd6b2bfcSGreg Roach </th> 570cb66f86SGreg Roach <th title="<?= I18N::translate('Menus') ?>"> 580cb66f86SGreg Roach <?= view('icons/menu') ?> 590cb66f86SGreg Roach <span class="sr-only"><?= I18N::translate('Menus') ?></span> 60dd6b2bfcSGreg Roach </th> 610cb66f86SGreg Roach <th title="<?= I18N::translate('Tabs') ?>"> 620cb66f86SGreg Roach <?= view('icons/tab') ?> 630cb66f86SGreg Roach <span class="sr-only"><?= I18N::translate('Tabs') ?></span> 64dd6b2bfcSGreg Roach </th> 650cb66f86SGreg Roach <th title="<?= I18N::translate('Sidebars') ?>"> 660cb66f86SGreg Roach <?= view('icons/sidebar') ?> 670cb66f86SGreg Roach <span class="sr-only"><?= I18N::translate('Sidebars') ?></span> 68dd6b2bfcSGreg Roach </th> 690cb66f86SGreg Roach <th title="<?= I18N::translate('Blocks') ?>"> 700cb66f86SGreg Roach <?= view('icons/block') ?> 710cb66f86SGreg Roach <span class="sr-only"><?= I18N::translate('Blocks') ?></span> 72dd6b2bfcSGreg Roach </th> 730cb66f86SGreg Roach <th title="<?= I18N::translate('Charts') ?>"> 740cb66f86SGreg Roach <?= view('icons/chart') ?> 750cb66f86SGreg Roach <span class="sr-only"><?= I18N::translate('Charts') ?></span> 76dd6b2bfcSGreg Roach </th> 770cb66f86SGreg Roach <th title="<?= I18N::translate('Reports') ?>"> 780cb66f86SGreg Roach <?= view('icons/report') ?> 790cb66f86SGreg Roach <span class="sr-only"><?= I18N::translate('Reports') ?></span> 80dd6b2bfcSGreg Roach </th> 8133c34396SGreg Roach <th title="<?= I18N::translate('Footers') ?>"> 8233c34396SGreg Roach <?= view('icons/footer') ?> 8333c34396SGreg Roach <span class="sr-only"><?= I18N::translate('Footers') ?></span> 8433c34396SGreg Roach </th> 859e5cb8c9SGreg Roach <th title="<?= I18N::translate('Tracking and analytics') ?>"> 869e5cb8c9SGreg Roach <?= view('icons/analytics') ?> 879e5cb8c9SGreg Roach <span class="sr-only"><?= I18N::translate('Tracking and analytics') ?></span> 889e5cb8c9SGreg Roach </th> 89f3244202SGreg Roach <th title="<?= I18N::translate('Historic events') ?>"> 90f3244202SGreg Roach <?= view('icons/history') ?> 91f3244202SGreg Roach <span class="sr-only"><?= I18N::translate('Historic events') ?></span> 92f3244202SGreg Roach </th> 930cb66f86SGreg Roach <th class="d-none" title="<?= I18N::translate('Themes') ?>"> 940cb66f86SGreg Roach <?= view('icons/theme') ?> 950cb66f86SGreg Roach <span class="sr-only"><?= I18N::translate('Themes') ?></span> 96dd6b2bfcSGreg Roach </th> 97dd6b2bfcSGreg Roach </tr> 98dd6b2bfcSGreg Roach </thead> 990cb66f86SGreg Roach 100dd6b2bfcSGreg Roach <tbody> 10149a243cbSGreg Roach <?php foreach ($modules as $module) : ?> 102dd6b2bfcSGreg Roach <tr> 1030cb66f86SGreg Roach <th scope="row" dir="auto"> 10449a243cbSGreg Roach <?= $module->title() ?> 105dd6b2bfcSGreg Roach </th> 10649a243cbSGreg Roach <td class="text-center" data-sort="<?= $module->isEnabled() ?>"> 107677aaceaSGreg Roach <?= Bootstrap4::checkbox('', false, ['name' => 'status-' . $module->name(), 'checked' => $module->isEnabled()]) ?> 108dd6b2bfcSGreg Roach </td> 1090cb66f86SGreg Roach <td> 11049a243cbSGreg Roach <?= $module->description() ?> 1119cad7645SGreg Roach <?php if ($module instanceof ModuleCustomInterface) : ?> 112dd6b2bfcSGreg Roach <br> 113dd6b2bfcSGreg Roach <?= view('icons/warning') ?> 114dd6b2bfcSGreg Roach <?= I18N::translate('Custom module') ?> 115dd6b2bfcSGreg Roach <?php if ($module::CUSTOM_VERSION) : ?> 116dd6b2bfcSGreg Roach - <?= I18N::translate('Version') ?> <?= $module::CUSTOM_VERSION ?> 117dd6b2bfcSGreg Roach <?php endif ?> 118dd6b2bfcSGreg Roach <?php if ($module::CUSTOM_WEBSITE) : ?> 119dd6b2bfcSGreg Roach - <a href="<?= $module::CUSTOM_WEBSITE ?>"> 120dd6b2bfcSGreg Roach <?= $module::CUSTOM_WEBSITE ?> 121dd6b2bfcSGreg Roach </a> 122dd6b2bfcSGreg Roach <?php endif ?> 123dd6b2bfcSGreg Roach <?php endif ?> 124*8e5c5efeSGreg Roach <?php if ($module instanceof ModuleExternalUrlInterface) : ?> 125*8e5c5efeSGreg Roach <br> 126*8e5c5efeSGreg Roach <a href="<?= e($module->externalUrl()) ?>"> 127*8e5c5efeSGreg Roach <?= e($module->externalUrl()) ?> 128*8e5c5efeSGreg Roach </a> 129*8e5c5efeSGreg Roach <?php endif ?> 130dd6b2bfcSGreg Roach </td> 1310cb66f86SGreg Roach <td class="text-center text-muted" title="<?= I18N::translate('Preferences') ?>"> 1320cb66f86SGreg Roach <?php if ($module instanceof ModuleConfigInterface) : ?> 1330cb66f86SGreg Roach <a href="<?= e($module->getConfigLink()) ?>" title="<?= I18N::translate('Preferences') ?>"> 1340cb66f86SGreg Roach <?= view('icons/preferences') ?> 1350cb66f86SGreg Roach <span class="sr-only"> 1360cb66f86SGreg Roach <?= I18N::translate('Preferences') ?> 1370cb66f86SGreg Roach </span> 1380cb66f86SGreg Roach </a> 1390cb66f86SGreg Roach <?php endif ?> 1400cb66f86SGreg Roach </td> 1410cb66f86SGreg Roach <td class="text-center text-muted" title="<?= I18N::translate('Menu') ?>"> 142dd6b2bfcSGreg Roach <?php if ($module instanceof ModuleMenuInterface) : ?> 143dd6b2bfcSGreg Roach <?= view('icons/menu') ?> 144dd6b2bfcSGreg Roach <span class="sr-only"><?= I18N::translate('Menu') ?></span> 145dd6b2bfcSGreg Roach <?php else : ?> 146dd6b2bfcSGreg Roach - 147dd6b2bfcSGreg Roach <?php endif ?> 148dd6b2bfcSGreg Roach </td> 1490cb66f86SGreg Roach <td class="text-center text-muted" title="<?= I18N::translate('Tab') ?>"> 150dd6b2bfcSGreg Roach <?php if ($module instanceof ModuleTabInterface) : ?> 151dd6b2bfcSGreg Roach <?= view('icons/tab') ?> 152dd6b2bfcSGreg Roach <span class="sr-only"><?= I18N::translate('Tab') ?></span> 1530cb66f86SGreg Roach <?php else : ?> 1540cb66f86SGreg Roach - 155dd6b2bfcSGreg Roach <?php endif ?> 1560cb66f86SGreg Roach </td> 1570cb66f86SGreg Roach <td class="text-center text-muted" title="<?= I18N::translate('Sidebar') ?>"> 158dd6b2bfcSGreg Roach <?php if ($module instanceof ModuleSidebarInterface) : ?> 159dd6b2bfcSGreg Roach <?= view('icons/sidebar') ?> 160dd6b2bfcSGreg Roach <span class="sr-only"><?= I18N::translate('Sidebar') ?></span> 1610cb66f86SGreg Roach <?php else : ?> 1620cb66f86SGreg Roach - 163dd6b2bfcSGreg Roach <?php endif ?> 1640cb66f86SGreg Roach </td> 1650cb66f86SGreg Roach <td class="text-center text-muted"> 1660cb66f86SGreg Roach <?php if ($module instanceof ModuleBlockInterface) : ?> 1670cb66f86SGreg Roach <?php if ($module->isUserBlock()) : ?> 1680cb66f86SGreg Roach <span title="<?= I18N::translate('My page') ?>"> 169dd6b2bfcSGreg Roach <?= view('icons/block-user') ?> 1700cb66f86SGreg Roach </span> 1710cb66f86SGreg Roach <span class="sr-only"> 1720cb66f86SGreg Roach <?= I18N::translate('My page') ?> 1730cb66f86SGreg Roach </span> 174dd6b2bfcSGreg Roach <?php endif ?> 1750cb66f86SGreg Roach 1760cb66f86SGreg Roach <?php if ($module->isTreeBlock()) : ?> 1770cb66f86SGreg Roach <span title="<?= I18N::translate('Home page') ?>"> 178dd6b2bfcSGreg Roach <?= view('icons/block-tree') ?> 1790cb66f86SGreg Roach </span> 1800cb66f86SGreg Roach <span class="sr-only"> 1810cb66f86SGreg Roach <?= I18N::translate('Home page') ?> 1820cb66f86SGreg Roach </span> 183dd6b2bfcSGreg Roach <?php endif ?> 1840cb66f86SGreg Roach <?php else : ?> 1850cb66f86SGreg Roach - 1860cb66f86SGreg Roach <?php endif ?> 1870cb66f86SGreg Roach </td> 1880cb66f86SGreg Roach <td class="text-center text-muted" title="<?= I18N::translate('Chart') ?>"> 189dd6b2bfcSGreg Roach <?php if ($module instanceof ModuleChartInterface) : ?> 190dd6b2bfcSGreg Roach <?= view('icons/chart') ?> 191dd6b2bfcSGreg Roach <span class="sr-only"><?= I18N::translate('Chart') ?></span> 1920cb66f86SGreg Roach <?php else : ?> 1930cb66f86SGreg Roach - 194dd6b2bfcSGreg Roach <?php endif ?> 1950cb66f86SGreg Roach </td> 1960cb66f86SGreg Roach <td class="text-center text-muted" title="<?= I18N::translate('Report') ?>"> 197dd6b2bfcSGreg Roach <?php if ($module instanceof ModuleReportInterface) : ?> 198dd6b2bfcSGreg Roach <?= view('icons/report') ?> 199dd6b2bfcSGreg Roach <span class="sr-only"><?= I18N::translate('Report') ?></span> 2000cb66f86SGreg Roach <?php else : ?> 2010cb66f86SGreg Roach - 202dd6b2bfcSGreg Roach <?php endif ?> 2030cb66f86SGreg Roach </td> 20433c34396SGreg Roach <td class="text-center text-muted" title="<?= I18N::translate('Footer') ?>"> 20533c34396SGreg Roach <?php if ($module instanceof ModuleFooterInterface) : ?> 20633c34396SGreg Roach <?= view('icons/footer') ?> 20733c34396SGreg Roach <span class="sr-only"><?= I18N::translate('Footer') ?></span> 20833c34396SGreg Roach <?php else : ?> 20933c34396SGreg Roach - 21033c34396SGreg Roach <?php endif ?> 21133c34396SGreg Roach </td> 2129e5cb8c9SGreg Roach <td class="text-center text-muted" title="<?= I18N::translate('Tracking and analytics') ?>"> 2139e5cb8c9SGreg Roach <?php if ($module instanceof ModuleAnalyticsInterface) : ?> 2149e5cb8c9SGreg Roach <?= view('icons/analytics') ?> 2159e5cb8c9SGreg Roach <span class="sr-only"><?= I18N::translate('Tracking and analytics') ?></span> 2169e5cb8c9SGreg Roach <?php else : ?> 2179e5cb8c9SGreg Roach - 2189e5cb8c9SGreg Roach <?php endif ?> 2199e5cb8c9SGreg Roach </td> 220f3244202SGreg Roach <td class="text-center text-muted" title="<?= I18N::translate('Historic events') ?>"> 221f3244202SGreg Roach <?php if ($module instanceof ModuleHistoricEventsInterface) : ?> 222f3244202SGreg Roach <?= view('icons/history') ?> 223f3244202SGreg Roach <span class="sr-only"><?= I18N::translate('Historic events') ?></span> 224f3244202SGreg Roach <?php else : ?> 225f3244202SGreg Roach - 226f3244202SGreg Roach <?php endif ?> 227f3244202SGreg Roach </td> 2280cb66f86SGreg Roach <td class="text-center text-muted d-none" title="<?= I18N::translate('Theme') ?>"> 229dd6b2bfcSGreg Roach <?php if ($module instanceof ModuleThemeInterface) : ?> 230dd6b2bfcSGreg Roach <?= view('icons/theme') ?> 231dd6b2bfcSGreg Roach <span class="sr-only"><?= I18N::translate('Theme') ?></span> 2320cb66f86SGreg Roach <?php else : ?> 2330cb66f86SGreg Roach - 234dd6b2bfcSGreg Roach <?php endif ?> 235dd6b2bfcSGreg Roach </td> 236dd6b2bfcSGreg Roach </tr> 237dd6b2bfcSGreg Roach <?php endforeach ?> 238dd6b2bfcSGreg Roach </tbody> 239dd6b2bfcSGreg Roach </table> 240dd6b2bfcSGreg Roach <button class="btn btn-primary" type="submit"> 241dd6b2bfcSGreg Roach <?= view('icons/save') ?> 242dd6b2bfcSGreg Roach <?= I18N::translate('save') ?></button> 243dd6b2bfcSGreg Roach</form> 244dd6b2bfcSGreg Roach 245dd6b2bfcSGreg Roach<?php View::push('javascript') ?> 246dd6b2bfcSGreg Roach<script> 247dd6b2bfcSGreg Roach 'use strict'; 248dd6b2bfcSGreg Roach 249dd6b2bfcSGreg Roach $(".table-module-administration").dataTable({<?= I18N::datatablesI18N() ?>}); 250dd6b2bfcSGreg Roach</script> 251dd6b2bfcSGreg Roach<?php View::endpush() ?> 252