forked from kiwi3685/kiwitrees
-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin_module_blocks.php
112 lines (106 loc) · 3.72 KB
/
admin_module_blocks.php
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
<?php
/**
* Kiwitrees: Web based Family History software
* Copyright (C) 2012 to 2017 kiwitrees.net
*
* Derived from webtrees (www.webtrees.net)
* Copyright (C) 2010 to 2012 webtrees development team
*
* Derived from PhpGedView (phpgedview.sourceforge.net)
* Copyright (C) 2002 to 2010 PGV Development Team
*
* Kiwitrees 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 Kiwitrees. If not, see <http://www.gnu.org/licenses/>.
*/
define('KT_SCRIPT_NAME', 'admin_module_blocks.php');
require 'includes/session.php';
require KT_ROOT.'includes/functions/functions_edit.php';
$controller = new KT_Controller_Page();
$controller
->restrictAccess(KT_USER_IS_ADMIN)
->setPageTitle(KT_I18N::translate('Module administration'))
->pageHeader();
$modules=KT_Module::getActiveBlocks(KT_GED_ID, KT_PRIV_HIDE);
$action = safe_POST('action');
if ($action=='update_mods' && KT_Filter::checkCsrf()) {
foreach ($modules as $module_name=>$module) {
foreach (KT_Tree::getAll() as $tree) {
$value = safe_POST("access-{$module_name}-{$tree->tree_id}", KT_REGEX_INTEGER, $module->defaultAccessLevel());
KT_DB::prepare(
"REPLACE INTO `##module_privacy` (module_name, gedcom_id, component, access_level) VALUES (?, ?, 'block', ?)"
)->execute(array($module_name, $tree->tree_id, $value));
}
}
}
?>
<div id="blocks">
<form method="post" action="<?php echo KT_SCRIPT_NAME; ?>">
<input type="hidden" name="action" value="update_mods">
<?php echo KT_Filter::getCsrf(); ?>
<table id="blocks_table" class="modules_table">
<thead>
<tr>
<th><?php echo KT_I18N::translate('Block'); ?></th>
<th><?php echo KT_I18N::translate('Description'); ?></th>
<th><?php echo KT_I18N::translate('Access level'); ?></th>
</tr>
</thead>
<tbody>
<?php
foreach ($modules as $module) {
?>
<tr>
<td>
<?php
if ( $module instanceof KT_Module_Config ) {
echo '<a href="', $module->getConfigLink(), '">';
}
echo $module->getTitle();
if ( $module instanceof KT_Module_Config && array_key_exists($module->getName(), KT_Module::getActiveModules() ) ) {
echo ' <i class="fa fa-cogs"></i></a>';
}
?>
</td>
<td>
<?php echo $module->getDescription(); ?>
</td>
<td>
<table class="modules_table2">
<?php foreach (KT_Tree::getAll() as $tree) { ?>
<tr>
<td>
<?php echo $tree->tree_title_html; ?>
</td>
<td>
<?php
$access_level = KT_DB::prepare(
"SELECT access_level FROM `##module_privacy` WHERE gedcom_id=? AND module_name=? AND component='block'"
)->execute(array($tree->tree_id, $module->getName()))->fetchOne();
if ($access_level === null) {
$access_level = $module->defaultAccessLevel();
}
echo edit_field_access_level('access-' . $module->getName() . '-' . $tree->tree_id, $access_level);
?>
</td>
</tr>
<?php } ?>
</table>
</td>
</tr>
<?php } ?>
</tbody>
</table>
<button class="btn btn-primary show" type="submit">
<i class="fa fa-floppy-o"></i>
<?php echo KT_I18N::translate('save'); ?>
</button>
</form>
</div>