C:\$Recycle.Bin\S-1-5-21-3967099092-2644009230-141905953-500\$R4JXGWR\include\admin\groups.inc.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
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
<?php # $Id: users.inc.php 114 2005-05-22 15:37:11Z garvinhicking $
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
# All rights reserved.  See LICENSE file for licensing details

if (IN_serendipity !== true) {
    die (
'Don\'t hack!');
}

if (!
serendipity_checkPermission('adminUsersGroups')) {
    return;
}

/* Delete a group */
if (isset($_POST['DELETE_YES']) && serendipity_checkFormToken()) {
    
$group serendipity_fetchGroup($serendipity['POST']['group']);
    
serendipity_deleteGroup($serendipity['POST']['group']);
    
printf('<div class="serendipityAdminMsgSuccess">' DELETED_GROUP '</div>'$serendipity['POST']['group'], $group['name']);
}

/* Save new group */
if (isset($_POST['SAVE_NEW']) && serendipity_checkFormToken()) {
    
$serendipity['POST']['group'] = serendipity_addGroup($serendipity['POST']['name']);
    
$perms serendipity_getAllPermissionNames();    
    
serendipity_updateGroupConfig($serendipity['POST']['group'], $perms$serendipity['POST']);
    
printf('<div class="serendipityAdminMsgSuccess">' CREATED_GROUP '</div>''#' $serendipity['POST']['group'] . ', ' $serendipity['POST']['name']);
}


/* Edit a group */
if (isset($_POST['SAVE_EDIT']) && serendipity_checkFormToken()) {
    
$perms serendipity_getAllPermissionNames();    
    
serendipity_updateGroupConfig($serendipity['POST']['group'], $perms$serendipity['POST']);
    
printf('<div class="serendipityAdminMsgSuccess">' MODIFIED_GROUP '</div>'$serendipity['POST']['name']);
}

if ( 
$serendipity['GET']['adminAction'] != 'delete' ) {
?>
    <table width="100%">
        <tr>
            <td><strong><?php echo GROUP?></strong></td>
            <td width="200">&nbsp;</td>
        </tr>
        <tr>
            <td colspan="3">
<?php
if (serendipity_checkPermission('adminUsersMaintainOthers')) {
    
$groups serendipity_getAllGroups();
} elseif (
serendipity_checkPermission('adminUsersMaintainSame')) {
    
$groups serendipity_getAllGroups($serendipity['authorid']);
} else {
    
$groups = array();
}
$i 0;
foreach(
$groups as $group) {
?>
<div class="serendipity_admin_list_item serendipity_admin_list_item_<?php echo ($i++ % 2) ? 'even' 'uneven' ?>">
<table width="100%">
    <tr>
        <td><?php echo htmlspecialchars($group['name']); ?></td>
        <td width="200" align="right"> [<a href="?serendipity[adminModule]=groups&amp;serendipity[adminAction]=edit&amp;serendipity[group]=<?php echo $group['id'?>"><?php echo EDIT ?></a>]
                                     - [<a href="?serendipity[adminModule]=groups&amp;serendipity[adminAction]=delete&amp;serendipity[group]=<?php echo $group['id'?>"><?php echo DELETE ?></a>]</td>
    </tr>
</table>
</div>
<?php
    
}
?>
            </tr>
        </tr>
<?php if ( !isset($_POST['NEW']) ) { ?>
        <tr>
            <td colspan="3" align="right">
                <form action="?serendipity[adminModule]=groups" method="post">
                    <input type="submit" name="NEW"   value="<?php echo CREATE_NEW_GROUP?>" class="serendipityPrettyButton" />
                </form>
            </td>
        </tr>
<?php ?>
    </table>

<?php
}


if (
$serendipity['GET']['adminAction'] == 'edit' || isset($_POST['NEW'])) {
?>
<br />
<br />
<hr noshade="noshade">
<form action="?serendipity[adminModule]=groups" method="post">
<?php echo serendipity_setFormToken(); ?>
    <div>
    <h3>
<?php
if ($serendipity['GET']['adminAction'] == 'edit') {
    
$group serendipity_fetchGroup($serendipity['GET']['group']);
    echo 
EDIT;
    
$from = &$group;
    echo 
'<input type="hidden" name="serendipity[group]" value="' $from['id'] . '" />';
} else {
    echo 
CREATE;
    
$from = array();
}
?>
    </h3>

<table>
    <tr>
        <td><?php echo NAME?></td>
        <td><input type="text" name="serendipity[name]" value="<?php echo htmlspecialchars($from['name']); ?>" /></td>
    </tr>
    <tr>
        <td valign="top"><?php echo USERCONF_GROUPS?></td>
        <td><select name="serendipity[members][]" multiple="multiple" size="5">
<?php
$allusers 
serendipity_fetchUsers();
$users    serendipity_getGroupUsers($from['id']);

$selected = array();
foreach((array)
$users AS $user) {
    
$selected[$user['id']] = true;
}

foreach(
$allusers AS $user) {
    echo 
'<option value="' . (int)$user['authorid'] . '" ' . (isset($selected[$user['authorid']]) ? 'selected="selected"' '') . '>' htmlspecialchars($user['realname']) . '</option>' "\n";
}
?>
            </select>
        </td>
    </tr>
    <tr>
        <td colspan="2">&nbsp;</td>
    </tr>
<?php
    $perms 
serendipity_getAllPermissionNames();    
    
ksort($perms);
    foreach(
$perms AS $perm => $userlevels) {
        if (isset(
$from[$perm]) && $from[$perm] === 'true') {
            
$selected 'checked="checked"';
        } else {
            
$selected '';
        }

        if (!isset(
$section)) {
            
$section $perm;
        }
        
        if (
$section != $perm && substr($perm0strlen($section)) == $section) {
            
$indent  '&nbsp;&nbsp;';
            
$indentB '';
        } elseif (
$section != $perm) {
            
$indent  '<br />';
            
$indentB '<br />';
            
$section $perm;
        }

        if (
defined('PERMISSION_' strtoupper($perm))) {
            
$permname constant('PERMISSION_' strtoupper($perm));
        } else {
            
$permname $perm;
        }
        
        if (!
serendipity_checkPermission($perm)) {
            echo 
"<tr>\n";
            echo 
"<td>$indenthtmlspecialchars($permname) . "</td>\n";
            echo 
'<td>' $indentB ' ' . (!empty($selected) ? YES NO) . '</td>' "\n";
            echo 
"</tr>\n";
        } else {
            echo 
"<tr>\n";
            echo 
"<td>$indent<label for=\"" htmlspecialchars($perm) . "\">" htmlspecialchars($permname) . "</label></td>\n";
            echo 
'<td>' $indentB '<input id="' htmlspecialchars($perm) . '" type="checkbox" name="serendipity[' htmlspecialchars($perm) . ']" value="true" ' $selected ' /></td>' "\n";
            echo 
"</tr>\n";
        }
    }
?>
</table>

<?php
if ($serendipity['GET']['adminAction'] == 'edit') { ?>
        <input type="submit" name="SAVE_EDIT"   value="<?php echo SAVE?>" class="serendipityPrettyButton" />
<?php } else { ?>
        <input type="submit" name="SAVE_NEW" value="<?php echo CREATE_NEW_GROUP?>" class="serendipityPrettyButton" />
<?php ?>

    </div>
</form>
<?php
} elseif ($serendipity['GET']['adminAction'] == 'delete') {
    
$group serendipity_fetchGroup($serendipity['GET']['group']);
?>
<form action="?serendipity[adminModule]=groups" method="post">
    <div>
    <?php printf(DELETE_GROUP$serendipity['GET']['group'], $group['name']); ?>
        <br /><br />
        <?php echo serendipity_setFormToken(); ?>
        <input type="hidden" name="serendipity[group]" value="<?php echo $serendipity['GET']['group']; ?>" />
        <input type="submit" name="DELETE_YES" value="<?php echo DUMP_IT?>" class="serendipityPrettyButton" />
        <input type="submit" name="NO" value="<?php echo NOT_REALLY?>" class="serendipityPrettyButton" />
    </div>
</form>
<?php
}

/* vim: set sts=4 ts=4 expandtab : */
?>