1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/webtrees_ynh.git synced 2024-09-03 18:26:37 +02:00
webtrees_ynh/sources/admin_module_menus.php

131 lines
4.4 KiB
PHP

<?php
/**
* webtrees: online genealogy
* Copyright (C) 2016 webtrees development team
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
namespace Fisharebest\Webtrees;
use Fisharebest\Webtrees\Controller\PageController;
use Fisharebest\Webtrees\Functions\FunctionsEdit;
use Fisharebest\Webtrees\Module\ModuleConfigInterface;
define('WT_SCRIPT_NAME', 'admin_module_menus.php');
require 'includes/session.php';
$controller = new PageController;
$controller
->restrictAccess(Auth::isAdmin())
->setPageTitle(I18N::translate('Menus'));
$action = Filter::post('action');
$modules = Module::getAllModulesByComponent('menu');
if ($action === 'update_mods' && Filter::checkCsrf()) {
foreach ($modules as $module) {
foreach (Tree::getAll() as $tree) {
$access_level = Filter::post('access-' . $module->getName() . '-' . $tree->getTreeId(), WT_REGEX_INTEGER, $module->defaultAccessLevel());
Database::prepare(
"REPLACE INTO `##module_privacy` (module_name, gedcom_id, component, access_level) VALUES (?, ?, 'menu', ?)"
)->execute(array($module->getName(), $tree->getTreeId(), $access_level));
}
$order = Filter::post('order-' . $module->getName());
Database::prepare(
"UPDATE `##module` SET menu_order = ? WHERE module_name = ?"
)->execute(array($order, $module->getName()));
}
header('Location: ' . WT_BASE_URL . WT_SCRIPT_NAME);
return;
}
$controller
->addInlineJavascript('
jQuery("#module_table").sortable({
items: ".sortme",
forceHelperSize: true,
forcePlaceholderSize: true,
opacity: 0.7,
cursor: "move",
axis: "y",
update: function(event, ui) {
jQuery("input", jQuery(this)).each(
function (index, element) {
element.value = index + 1;
}
);
}
});
')
->pageHeader();
?>
<ol class="breadcrumb small">
<li><a href="admin.php"><?php echo I18N::translate('Control panel'); ?></a></li>
<li><a href="admin_modules.php"><?php echo I18N::translate('Module administration'); ?></a></li>
<li class="active"><?php echo $controller->getPageTitle(); ?></li>
</ol>
<h1><?php echo $controller->getPageTitle(); ?></h1>
<form method="post">
<input type="hidden" name="action" value="update_mods">
<?php echo Filter::getCsrf(); ?>
<table id="module_table" class="table table-bordered">
<thead>
<tr>
<th class="col-xs-1"><?php echo I18N::translate('Menu'); ?></th>
<th class="col-xs-5"><?php echo I18N::translate('Description'); ?></th>
<th class="col-xs-1"><?php echo I18N::translate('Order'); ?></th>
<th class="col-xs-5"><?php echo I18N::translate('Access level'); ?></th>
</tr>
</thead>
<tbody>
<?php $order = 0; ?>
<?php foreach ($modules as $module): ?>
<?php $order++; ?>
<tr class="sortme">
<td class="col-xs-1">
<?php if ($module instanceof ModuleConfigInterface): ?>
<a href="<?php echo $module->getConfigLink(); ?>"><?php echo $module->getTitle(); ?> <i class="fa fa-cogs"></i></a>
<?php else: ?>
<?php echo $module->getTitle(); ?>
<?php endif; ?>
</td>
<td class="col-xs-5"><?php echo $module->getDescription(); ?></td>
<td class="col-xs-1"><input type="text" size="3" value="<?php echo $order; ?>" name="order-<?php echo $module->getName(); ?>"></td>
<td class="col-xs-5">
<table class="table">
<tbody>
<?php foreach (Tree::getAll() as $tree): ?>
<tr>
<td>
<?php echo $tree->getTitleHtml(); ?>
</td>
<td>
<?php echo FunctionsEdit::editFieldAccessLevel('access-' . $module->getName() . '-' . $tree->getTreeId(), $module->getAccessLevel($tree, 'menu')); ?>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<button class="btn btn-primary" type="submit">
<i class="fa fa-check"></i>
<?php echo I18N::translate('save'); ?>
</button>
</form>