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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
|
<?php
// Module Administration User Interface.
//
// webtrees: Web based Family History software
// Copyright (C) 2011 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// @version $Id$
define('WT_SCRIPT_NAME', 'admin_modules.php');
require 'includes/session.php';
require WT_ROOT.'includes/functions/functions_edit.php';
// Only admin users can access this page
if (!WT_USER_IS_ADMIN) {
header('Location: '.WT_SERVER_NAME.WT_SCRIPT_PATH.'login.php?url='.WT_SCRIPT_NAME);
exit;
}
// Modules may have been added or updated to no longer provide a particular component
$installed_modules=WT_Module::getInstalledModules();
foreach ($installed_modules as $module_name=>$module) {
// New module
WT_DB::prepare("INSERT IGNORE INTO `##module` (module_name) VALUES (?)")->execute(array($module_name));
// Removed component
if (!$module instanceof WT_Module_Block) {
WT_DB::prepare(
"DELETE FROM `##module_privacy` WHERE module_name=? AND component='block'"
)->execute(array($module_name));
WT_DB::prepare(
"DELETE `##block_setting` FROM `##block_setting` JOIN `##block` USING (block_id) WHERE module_name=?"
)->execute(array($module_name));
WT_DB::prepare(
"DELETE FROM `##block` WHERE module_name=?"
)->execute(array($module_name));
}
if (!$module instanceof WT_Module_Chart) {
WT_DB::prepare(
"DELETE FROM `##module_privacy` WHERE module_name=? AND component='chart'"
)->execute(array($module_name));
}
if (!$module instanceof WT_Module_Menu) {
WT_DB::prepare(
"DELETE FROM `##module_privacy` WHERE module_name=? AND component='menu'"
)->execute(array($module_name));
WT_DB::prepare(
"UPDATE `##module` SET menu_order=NULL WHERE module_name=?"
)->execute(array($module_name));
}
if (!$module instanceof WT_Module_Report) {
WT_DB::prepare(
"DELETE FROM `##module_privacy` WHERE module_name=? AND component='report'"
)->execute(array($module_name));
}
if (!$module instanceof WT_Module_Sidebar) {
WT_DB::prepare(
"DELETE FROM `##module_privacy` WHERE module_name=? AND component='sidebar'"
)->execute(array($module_name));
WT_DB::prepare(
"UPDATE `##module` SET sidebar_order=NULL WHERE module_name=?"
)->execute(array($module_name));
}
if (!$module instanceof WT_Module_Tab) {
WT_DB::prepare(
"DELETE FROM `##module_privacy` WHERE module_name=? AND component='tab'"
)->execute(array($module_name));
WT_DB::prepare(
"UPDATE `##module` SET tab_order=NULL WHERE module_name=?"
)->execute(array($module_name));
}
if (!$module instanceof WT_Module_Theme) {
WT_DB::prepare(
"DELETE FROM `##module_privacy` WHERE module_name=? AND component='theme'"
)->execute(array($module_name));
}
}
// Delete config for modules that no longer exist
$module_names=WT_DB::prepare("SELECT module_name FROM `##module`")->fetchOneColumn();
foreach ($module_names as $module_name) {
if (!array_key_exists($module_name, $installed_modules)) {
WT_DB::prepare(
"DELETE FROM `##module_privacy` WHERE module_name=?"
)->execute(array($module_name));
WT_DB::prepare(
"DELETE `##block_setting` FROM `##block_setting` JOIN `##block` USING (block_id) WHERE module_name=?"
)->execute(array($module_name));
WT_DB::prepare(
"DELETE FROM `##block` WHERE module_name=?"
)->execute(array($module_name));
WT_DB::prepare(
"DELETE FROM `##module` WHERE module_name=?"
)->execute(array($module_name));
}
}
$action = safe_POST('action');
if ($action=='update_mods') {
foreach (WT_Module::getInstalledModules() as $module) {
$module_name=$module->getName();
$status=safe_POST("status-{$module_name}");
if ($status!==null) {
WT_DB::prepare("UPDATE `##module` SET status=? WHERE module_name=?")->execute(array($status ? 'enabled' : 'disabled', $module_name));
}
}
}
print_header(WT_I18N::translate('Module administration'));
?>
<script type="text/javascript">
//<![CDATA[
function reindexMods(id) {
jQuery('#'+id+' input').each(
function (index, value) {
value.value = index+1;
});
}
jQuery(document).ready(function() {
var oTable = jQuery('#installed_table').dataTable( {
"oLanguage": {
"sLengthMenu": '<?php echo /* I18N: %s is a placeholder for listbox containing numeric options */ WT_I18N::translate('Display %s records', '<select><option value="10">10</option><option value="20">20</option><option value="30">30</option><option value="40">40</option><option value="50">50</option><option value="-1">'.WT_I18N::translate('All').'</option></select>'); ?>',
"sZeroRecords": '<?php echo WT_I18N::translate('No records to display');?>',
"sInfo": '<?php echo /* I18N: %s' are placeholders for numbers */ WT_I18N::translate('Showing %1$s to %2$s of %3$s', '_START_', '_END_', '_TOTAL_'); ?>',
"sInfoEmpty": '<?php echo /* I18N: %s' are placeholders for numbers */ WT_I18N::translate('Showing %1$s to %2$s of %3$s', '0', '0', '0'); ?>',
"sInfoFiltered": '<?php echo /* I18N: %s is a placeholder for numbers */ WT_I18N::translate('(filtered from %s total entries)', '_MAX_'); ?>',
"sSearch": '<?php echo WT_I18N::translate('Search');?>:',
"oPaginate": {
"sFirst": '<?php echo WT_I18N::translate_c('first page', 'first');?>',
"sLast": '<?php echo WT_I18N::translate('last');?>',
"sNext": '<?php echo WT_I18N::translate('next');?>',
"sPrevious": '<?php echo WT_I18N::translate('previous');?>'
}
},
"bJQueryUI": true,
"bAutoWidth":false,
"aaSorting": [[ 1, "asc" ]],
"iDisplayLength": 10,
"sPaginationType": "full_numbers",
"aoColumnDefs": [
{ "bSortable": false, "aTargets": [ 0 ] }
]
});
});
//]]>
</script>
<div align="center">
<div id="tabs">
<form method="post" action="<?php echo WT_SCRIPT_NAME; ?>">
<input type="hidden" name="action" value="update_mods" />
<table id="installed_table" class="tablesorter" border="0" cellpadding="0" cellspacing="1">
<thead>
<tr>
<th><?php echo WT_I18N::translate('Enabled'); ?></th>
<th width="100px"><?php echo WT_I18N::translate('Module Name'); ?></th>
<th><?php echo WT_I18N::translate('Description'); ?></th>
<th><?php echo WT_I18N::translate('Menu'); ?></th>
<th><?php echo WT_I18N::translate('Tab'); ?></th>
<th><?php echo WT_I18N::translate('Sidebar'); ?></th>
<th><?php echo WT_I18N::translate('Block'); ?></th>
<th><?php echo WT_I18N::translate('Chart'); ?></th>
<th><?php echo WT_I18N::translate('Report'); ?></th>
<th><?php echo WT_I18N::translate('Theme'); ?></th>
</tr>
</thead>
<tbody>
<?php
foreach (WT_Module::getInstalledModules() as $module) {
$status=WT_DB::prepare(
"SELECT status FROM `##module` WHERE module_name=?"
)->execute(array($module->getName()))->fetchOne();
echo '<tr><td>', two_state_checkbox('status-'.$module->getName(), $status=='enabled'), '</td>';
?>
<td><?php echo $module->getTitle(); ?></td>
<td class="<?php echo $TEXT_DIRECTION; ?>" ><?php echo $module->getDescription(); ?></td>
<td><?php if ($module instanceof WT_Module_Menu) echo WT_I18N::translate('Yes'); else echo WT_I18N::translate('No'); ?></td>
<td><?php if ($module instanceof WT_Module_Tab) echo WT_I18N::translate('Yes'); else echo WT_I18N::translate('No'); ?></td>
<td><?php if ($module instanceof WT_Module_Sidebar) echo WT_I18N::translate('Yes'); else echo WT_I18N::translate('No'); ?></td>
<td><?php if ($module instanceof WT_Module_Block) echo WT_I18N::translate('Yes'); else echo WT_I18N::translate('No'); ?></td>
<td><?php if ($module instanceof WT_Module_Chart) echo WT_I18N::translate('Yes'); else echo WT_I18N::translate('No'); ?></td>
<td><?php if ($module instanceof WT_Module_Report) echo WT_I18N::translate('Yes'); else echo WT_I18N::translate('No'); ?></td>
<td><?php if ($module instanceof WT_Module_Theme) echo WT_I18N::translate('Yes'); else echo WT_I18N::translate('No'); ?></td>
</tr>
<?php
}
?>
</tbody>
</table>
<input type="submit" value="<?php echo WT_I18N::translate('Save'); ?>" />
</form>
</div>
</div>
<?php
print_footer();
|