1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
<?php
// Module Administration User Interface.
//
// webtrees: Web based Family History software
// Copyright (C) 2015 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 2 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, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
use WT\Auth;
define('WT_SCRIPT_NAME', 'admin_module_tabs.php');
require 'includes/session.php';
require WT_ROOT . 'includes/functions/functions_edit.php';
$controller = new WT_Controller_Page;
$controller
->restrictAccess(Auth::isAdmin())
->setPageTitle(WT_I18N::translate('Tabs'));
$modules = WT_Module::getActiveTabs(WT_GED_ID, WT_PRIV_HIDE);
$action = WT_Filter::post('action');
if ($action === 'update_mods' && WT_Filter::checkCsrf()) {
foreach ($modules as $module) {
foreach (WT_Tree::getAll() as $tree) {
$access_level = WT_Filter::post('access-' . $module->getName() . '-' . $tree->tree_id, WT_REGEX_INTEGER, $module->defaultAccessLevel());
WT_DB::prepare(
"REPLACE INTO `##module_privacy` (module_name, gedcom_id, component, access_level) VALUES (?, ?, 'tab', ?)"
)->execute(array($module->getName(), $tree->tree_id, $access_level));
}
$order = WT_Filter::post('order-' . $module->getName());
WT_DB::prepare(
"UPDATE `##module` SET tab_order=? WHERE module_name=?"
)->execute(array($order, $module->getName()));
}
header('Location: ' . WT_SERVER_NAME . WT_SCRIPT_PATH . 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 WT_I18N::translate('Control panel'); ?></a></li>
<li><a href="admin_modules.php"><?php echo WT_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 WT_Filter::getCsrf(); ?>
<table id="module_table" class="table table-bordered">
<thead>
<tr>
<th class="col-xs-1"><?php echo WT_I18N::translate('Tab'); ?></th>
<th class="col-xs-5"><?php echo WT_I18N::translate('Description'); ?></th>
<th class="col-xs-1"><?php echo WT_I18N::translate('Order'); ?></th>
<th class="col-xs-5"><?php echo WT_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 WT_Module_Config): ?>
<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 (WT_Tree::getAll() as $tree): ?>
<tr>
<td>
<?php echo $tree->tree_title_html; ?>
</td>
<td>
<?php echo edit_field_access_level('access-' . $module->getName() . '-' . $tree->tree_id, $module->getAccessLevel($tree, 'tab')); ?>
</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 WT_I18N::translate('save'); ?>
</button>
</form>
|