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*33c34396SGreg Roach<?php use Fisharebest\Webtrees\Module\ModuleFooterInterface; ?> 9dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Module\ModuleMenuInterface; ?> 10dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Module\ModuleReportInterface; ?> 11dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Module\ModuleSidebarInterface; ?> 12dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Module\ModuleTabInterface; ?> 13dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Module\ModuleThemeInterface; ?> 14dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\View; ?> 15dd6b2bfcSGreg Roach 16dd6b2bfcSGreg Roach<?= view('components/breadcrumbs', ['links' => [route('admin-control-panel') => I18N::translate('Control panel'), $title]]) ?> 17dd6b2bfcSGreg Roach 18dd6b2bfcSGreg Roach<h1><?= $title ?></h1> 19dd6b2bfcSGreg Roach 20dd6b2bfcSGreg Roach<?php foreach ($deleted_modules as $module_name) : ?> 21dd6b2bfcSGreg Roach <div class="alert alert-warning" role="alert"> 22244d9cdfSGreg Roach <form action="<?= e(route('delete-module-settings')) ?>" class="form-inline" method="POST"> 23dd6b2bfcSGreg Roach <?= csrf_field() ?> 24dd6b2bfcSGreg Roach <input type="hidden" name="module_name" value="<?= $module_name ?>"> 25dd6b2bfcSGreg Roach <?= I18N::translate('Preferences exist for the module “%s”, but this module no longer exists.', $module_name) ?> 26dd6b2bfcSGreg Roach <button type="submit" class="btn btn-secondary text-wrap"> 27dd6b2bfcSGreg Roach <?= I18N::translate('Delete the preferences for this module.') ?> 28dd6b2bfcSGreg Roach </button> 29dd6b2bfcSGreg Roach </form> 30dd6b2bfcSGreg Roach </div> 31dd6b2bfcSGreg Roach<?php endforeach ?> 32dd6b2bfcSGreg Roach 33f70ab68bSGreg Roach<form method="POST"> 34dd6b2bfcSGreg Roach <input type="hidden" name="route" value="admin-update-module-status"> 35dd6b2bfcSGreg Roach <?= csrf_field() ?> 36dd6b2bfcSGreg Roach <table class="table table-bordered table-hover table-sm table-module-administration" data-info="false" data-paging="false" data-state-save="true"> 37dd6b2bfcSGreg Roach <caption class="sr-only"> 38dd6b2bfcSGreg Roach <?= I18N::translate('Module administration') ?> 39dd6b2bfcSGreg Roach </caption> 40dd6b2bfcSGreg Roach <thead> 41dd6b2bfcSGreg Roach <tr> 42dd6b2bfcSGreg Roach <th> 43dd6b2bfcSGreg Roach <?= I18N::translate('Module') ?> 44dd6b2bfcSGreg Roach </th> 45dd6b2bfcSGreg Roach <th> 46dd6b2bfcSGreg Roach <?= I18N::translate('Enabled') ?> 47dd6b2bfcSGreg Roach </th> 480cb66f86SGreg Roach <th data-orderable="false"> 49dd6b2bfcSGreg Roach <?= I18N::translate('Description') ?> 50dd6b2bfcSGreg Roach </th> 510cb66f86SGreg Roach <th title="<?= I18N::translate('Preferences') ?>"> 520cb66f86SGreg Roach <?= view('icons/preferences') ?> 530cb66f86SGreg Roach <span class="sr-only"><?= I18N::translate('Preferences') ?></span> 54dd6b2bfcSGreg Roach </th> 550cb66f86SGreg Roach <th title="<?= I18N::translate('Menus') ?>"> 560cb66f86SGreg Roach <?= view('icons/menu') ?> 570cb66f86SGreg Roach <span class="sr-only"><?= I18N::translate('Menus') ?></span> 58dd6b2bfcSGreg Roach </th> 590cb66f86SGreg Roach <th title="<?= I18N::translate('Tabs') ?>"> 600cb66f86SGreg Roach <?= view('icons/tab') ?> 610cb66f86SGreg Roach <span class="sr-only"><?= I18N::translate('Tabs') ?></span> 62dd6b2bfcSGreg Roach </th> 630cb66f86SGreg Roach <th title="<?= I18N::translate('Sidebars') ?>"> 640cb66f86SGreg Roach <?= view('icons/sidebar') ?> 650cb66f86SGreg Roach <span class="sr-only"><?= I18N::translate('Sidebars') ?></span> 66dd6b2bfcSGreg Roach </th> 670cb66f86SGreg Roach <th title="<?= I18N::translate('Blocks') ?>"> 680cb66f86SGreg Roach <?= view('icons/block') ?> 690cb66f86SGreg Roach <span class="sr-only"><?= I18N::translate('Blocks') ?></span> 70dd6b2bfcSGreg Roach </th> 710cb66f86SGreg Roach <th title="<?= I18N::translate('Charts') ?>"> 720cb66f86SGreg Roach <?= view('icons/chart') ?> 730cb66f86SGreg Roach <span class="sr-only"><?= I18N::translate('Charts') ?></span> 74dd6b2bfcSGreg Roach </th> 750cb66f86SGreg Roach <th title="<?= I18N::translate('Reports') ?>"> 760cb66f86SGreg Roach <?= view('icons/report') ?> 770cb66f86SGreg Roach <span class="sr-only"><?= I18N::translate('Reports') ?></span> 78dd6b2bfcSGreg Roach </th> 79*33c34396SGreg Roach <th title="<?= I18N::translate('Footers') ?>"> 80*33c34396SGreg Roach <?= view('icons/footer') ?> 81*33c34396SGreg Roach <span class="sr-only"><?= I18N::translate('Footers') ?></span> 82*33c34396SGreg Roach </th> 839e5cb8c9SGreg Roach <th title="<?= I18N::translate('Tracking and analytics') ?>"> 849e5cb8c9SGreg Roach <?= view('icons/analytics') ?> 859e5cb8c9SGreg Roach <span class="sr-only"><?= I18N::translate('Tracking and analytics') ?></span> 869e5cb8c9SGreg Roach </th> 870cb66f86SGreg Roach <th class="d-none" title="<?= I18N::translate('Themes') ?>"> 880cb66f86SGreg Roach <?= view('icons/theme') ?> 890cb66f86SGreg Roach <span class="sr-only"><?= I18N::translate('Themes') ?></span> 90dd6b2bfcSGreg Roach </th> 91dd6b2bfcSGreg Roach </tr> 92dd6b2bfcSGreg Roach </thead> 930cb66f86SGreg Roach 94dd6b2bfcSGreg Roach <tbody> 9549a243cbSGreg Roach <?php foreach ($modules as $module) : ?> 96dd6b2bfcSGreg Roach <tr> 970cb66f86SGreg Roach <th scope="row" dir="auto"> 9849a243cbSGreg Roach <?= $module->title() ?> 99dd6b2bfcSGreg Roach </th> 10049a243cbSGreg Roach <td class="text-center" data-sort="<?= $module->isEnabled() ?>"> 101677aaceaSGreg Roach <?= Bootstrap4::checkbox('', false, ['name' => 'status-' . $module->name(), 'checked' => $module->isEnabled()]) ?> 102dd6b2bfcSGreg Roach </td> 1030cb66f86SGreg Roach <td> 10449a243cbSGreg Roach <?= $module->description() ?> 1059cad7645SGreg Roach <?php if ($module instanceof ModuleCustomInterface) : ?> 106dd6b2bfcSGreg Roach <br> 107dd6b2bfcSGreg Roach <?= view('icons/warning') ?> 108dd6b2bfcSGreg Roach <?= I18N::translate('Custom module') ?> 109dd6b2bfcSGreg Roach <?php if ($module::CUSTOM_VERSION) : ?> 110dd6b2bfcSGreg Roach - <?= I18N::translate('Version') ?> <?= $module::CUSTOM_VERSION ?> 111dd6b2bfcSGreg Roach <?php endif ?> 112dd6b2bfcSGreg Roach <?php if ($module::CUSTOM_WEBSITE) : ?> 113dd6b2bfcSGreg Roach - <a href="<?= $module::CUSTOM_WEBSITE ?>"> 114dd6b2bfcSGreg Roach <?= $module::CUSTOM_WEBSITE ?> 115dd6b2bfcSGreg Roach </a> 116dd6b2bfcSGreg Roach <?php endif ?> 117dd6b2bfcSGreg Roach <?php endif ?> 118dd6b2bfcSGreg Roach </td> 1190cb66f86SGreg Roach <td class="text-center text-muted" title="<?= I18N::translate('Preferences') ?>"> 1200cb66f86SGreg Roach <?php if ($module instanceof ModuleConfigInterface) : ?> 1210cb66f86SGreg Roach <a href="<?= e($module->getConfigLink()) ?>" title="<?= I18N::translate('Preferences') ?>"> 1220cb66f86SGreg Roach <?= view('icons/preferences') ?> 1230cb66f86SGreg Roach <span class="sr-only"> 1240cb66f86SGreg Roach <?= I18N::translate('Preferences') ?> 1250cb66f86SGreg Roach </span> 1260cb66f86SGreg Roach </a> 1270cb66f86SGreg Roach <?php endif ?> 1280cb66f86SGreg Roach </td> 1290cb66f86SGreg Roach <td class="text-center text-muted" title="<?= I18N::translate('Menu') ?>"> 130dd6b2bfcSGreg Roach <?php if ($module instanceof ModuleMenuInterface) : ?> 131dd6b2bfcSGreg Roach <?= view('icons/menu') ?> 132dd6b2bfcSGreg Roach <span class="sr-only"><?= I18N::translate('Menu') ?></span> 133dd6b2bfcSGreg Roach <?php else : ?> 134dd6b2bfcSGreg Roach - 135dd6b2bfcSGreg Roach <?php endif ?> 136dd6b2bfcSGreg Roach </td> 1370cb66f86SGreg Roach <td class="text-center text-muted" title="<?= I18N::translate('Tab') ?>"> 138dd6b2bfcSGreg Roach <?php if ($module instanceof ModuleTabInterface) : ?> 139dd6b2bfcSGreg Roach <?= view('icons/tab') ?> 140dd6b2bfcSGreg Roach <span class="sr-only"><?= I18N::translate('Tab') ?></span> 1410cb66f86SGreg Roach <?php else : ?> 1420cb66f86SGreg Roach - 143dd6b2bfcSGreg Roach <?php endif ?> 1440cb66f86SGreg Roach </td> 1450cb66f86SGreg Roach <td class="text-center text-muted" title="<?= I18N::translate('Sidebar') ?>"> 146dd6b2bfcSGreg Roach <?php if ($module instanceof ModuleSidebarInterface) : ?> 147dd6b2bfcSGreg Roach <?= view('icons/sidebar') ?> 148dd6b2bfcSGreg Roach <span class="sr-only"><?= I18N::translate('Sidebar') ?></span> 1490cb66f86SGreg Roach <?php else : ?> 1500cb66f86SGreg Roach - 151dd6b2bfcSGreg Roach <?php endif ?> 1520cb66f86SGreg Roach </td> 1530cb66f86SGreg Roach <td class="text-center text-muted"> 1540cb66f86SGreg Roach <?php if ($module instanceof ModuleBlockInterface) : ?> 1550cb66f86SGreg Roach <?php if ($module->isUserBlock()) : ?> 1560cb66f86SGreg Roach <span title="<?= I18N::translate('My page') ?>"> 157dd6b2bfcSGreg Roach <?= view('icons/block-user') ?> 1580cb66f86SGreg Roach </span> 1590cb66f86SGreg Roach <span class="sr-only"> 1600cb66f86SGreg Roach <?= I18N::translate('My page') ?> 1610cb66f86SGreg Roach </span> 162dd6b2bfcSGreg Roach <?php endif ?> 1630cb66f86SGreg Roach 1640cb66f86SGreg Roach <?php if ($module->isTreeBlock()) : ?> 1650cb66f86SGreg Roach <span title="<?= I18N::translate('Home page') ?>"> 166dd6b2bfcSGreg Roach <?= view('icons/block-tree') ?> 1670cb66f86SGreg Roach </span> 1680cb66f86SGreg Roach <span class="sr-only"> 1690cb66f86SGreg Roach <?= I18N::translate('Home page') ?> 1700cb66f86SGreg Roach </span> 171dd6b2bfcSGreg Roach <?php endif ?> 1720cb66f86SGreg Roach <?php else : ?> 1730cb66f86SGreg Roach - 1740cb66f86SGreg Roach <?php endif ?> 1750cb66f86SGreg Roach </td> 1760cb66f86SGreg Roach <td class="text-center text-muted" title="<?= I18N::translate('Chart') ?>"> 177dd6b2bfcSGreg Roach <?php if ($module instanceof ModuleChartInterface) : ?> 178dd6b2bfcSGreg Roach <?= view('icons/chart') ?> 179dd6b2bfcSGreg Roach <span class="sr-only"><?= I18N::translate('Chart') ?></span> 1800cb66f86SGreg Roach <?php else : ?> 1810cb66f86SGreg Roach - 182dd6b2bfcSGreg Roach <?php endif ?> 1830cb66f86SGreg Roach </td> 1840cb66f86SGreg Roach <td class="text-center text-muted" title="<?= I18N::translate('Report') ?>"> 185dd6b2bfcSGreg Roach <?php if ($module instanceof ModuleReportInterface) : ?> 186dd6b2bfcSGreg Roach <?= view('icons/report') ?> 187dd6b2bfcSGreg Roach <span class="sr-only"><?= I18N::translate('Report') ?></span> 1880cb66f86SGreg Roach <?php else : ?> 1890cb66f86SGreg Roach - 190dd6b2bfcSGreg Roach <?php endif ?> 1910cb66f86SGreg Roach </td> 192*33c34396SGreg Roach <td class="text-center text-muted" title="<?= I18N::translate('Footer') ?>"> 193*33c34396SGreg Roach <?php if ($module instanceof ModuleFooterInterface) : ?> 194*33c34396SGreg Roach <?= view('icons/footer') ?> 195*33c34396SGreg Roach <span class="sr-only"><?= I18N::translate('Footer') ?></span> 196*33c34396SGreg Roach <?php else : ?> 197*33c34396SGreg Roach - 198*33c34396SGreg Roach <?php endif ?> 199*33c34396SGreg Roach </td> 2009e5cb8c9SGreg Roach <td class="text-center text-muted" title="<?= I18N::translate('Tracking and analytics') ?>"> 2019e5cb8c9SGreg Roach <?php if ($module instanceof ModuleAnalyticsInterface) : ?> 2029e5cb8c9SGreg Roach <?= view('icons/analytics') ?> 2039e5cb8c9SGreg Roach <span class="sr-only"><?= I18N::translate('Tracking and analytics') ?></span> 2049e5cb8c9SGreg Roach <?php else : ?> 2059e5cb8c9SGreg Roach - 2069e5cb8c9SGreg Roach <?php endif ?> 2079e5cb8c9SGreg Roach </td> 2080cb66f86SGreg Roach <td class="text-center text-muted d-none" title="<?= I18N::translate('Theme') ?>"> 209dd6b2bfcSGreg Roach <?php if ($module instanceof ModuleThemeInterface) : ?> 210dd6b2bfcSGreg Roach <?= view('icons/theme') ?> 211dd6b2bfcSGreg Roach <span class="sr-only"><?= I18N::translate('Theme') ?></span> 2120cb66f86SGreg Roach <?php else : ?> 2130cb66f86SGreg Roach - 214dd6b2bfcSGreg Roach <?php endif ?> 215dd6b2bfcSGreg Roach </td> 216dd6b2bfcSGreg Roach </tr> 217dd6b2bfcSGreg Roach <?php endforeach ?> 218dd6b2bfcSGreg Roach </tbody> 219dd6b2bfcSGreg Roach </table> 220dd6b2bfcSGreg Roach <button class="btn btn-primary" type="submit"> 221dd6b2bfcSGreg Roach <?= view('icons/save') ?> 222dd6b2bfcSGreg Roach <?= I18N::translate('save') ?></button> 223dd6b2bfcSGreg Roach</form> 224dd6b2bfcSGreg Roach 225dd6b2bfcSGreg Roach<?php View::push('javascript') ?> 226dd6b2bfcSGreg Roach<script> 227dd6b2bfcSGreg Roach 'use strict'; 228dd6b2bfcSGreg Roach 229dd6b2bfcSGreg Roach $(".table-module-administration").dataTable({<?= I18N::datatablesI18N() ?>}); 230dd6b2bfcSGreg Roach</script> 231dd6b2bfcSGreg Roach<?php View::endpush() ?> 232