mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-24 04:08:51 +00:00
332 lines
No EOL
11 KiB
PHP
332 lines
No EOL
11 KiB
PHP
<?php
|
|
/***************************************************************************
|
|
* admin_groups.php
|
|
* -------------------
|
|
* begin : Saturday, Feb 13, 2001
|
|
* copyright : (C) 2001 The phpBB Group
|
|
* email : support@phpbb.com
|
|
*
|
|
* $Id$
|
|
*
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
*
|
|
* 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.
|
|
*
|
|
***************************************************************************/
|
|
|
|
if (!empty($setmodules) )
|
|
{
|
|
if (!$auth->acl_get('a_group') )
|
|
{
|
|
return;
|
|
}
|
|
|
|
$module['GROUP']['MANAGE'] = basename(__FILE__) . "$SID";
|
|
|
|
return;
|
|
}
|
|
|
|
define('IN_PHPBB', 1);
|
|
// Include files
|
|
$phpbb_root_path = '../';
|
|
require($phpbb_root_path . 'extension.inc');
|
|
require('pagestart.' . $phpEx);
|
|
|
|
// Do we have general permissions?
|
|
if (!$auth->acl_get('a_group') )
|
|
{
|
|
trigger_error($user->lang['NO_ADMIN']);
|
|
}
|
|
|
|
|
|
// Check and set some common vars
|
|
$action = (isset($_REQUEST['action']))? $_REQUEST['action'] : ((isset($_POST['addgroup'])) ? 'addgroup' : '');
|
|
$group_id = (isset($_REQUEST['g']))? intval($_REQUEST['g']) : '';
|
|
|
|
// Which page?
|
|
page_header($user->lang['MANAGE']);
|
|
|
|
switch ($action)
|
|
{
|
|
case 'edit':
|
|
case 'addgroup':
|
|
|
|
if (isset($_POST['submit']))
|
|
{
|
|
$group_name = $_POST['group_name'];
|
|
$group_description = $_POST['group_description'];
|
|
|
|
}
|
|
|
|
if ($action == 'edit' && empty($_POST['submit']))
|
|
{
|
|
$sql = "SELECT *
|
|
FROM " . GROUPS_TABLE . "
|
|
WHERE group_id = $group_id";
|
|
$result = $db->sql_query($sql);
|
|
|
|
if (!extract($db->sql_fetchrow($result)))
|
|
{
|
|
trigger_error($user->lang['NO_GROUP']);
|
|
}
|
|
}
|
|
|
|
?>
|
|
|
|
<h1><?php echo $user->lang['MANAGE'] . ' : <i>' . $group_name . '</i>'; ?></h1>
|
|
|
|
<p><?php echo $user->lang['GROUP_EDIT_EXPLAIN']; ?></p>
|
|
|
|
<?php
|
|
|
|
$sql = "SELECT *
|
|
FROM " . RANKS_TABLE . "
|
|
WHERE rank_special = 1
|
|
ORDER BY rank_title";
|
|
$result = $db->sql_query($sql);
|
|
|
|
$rank_options = '<option value="-1"' . ((empty($group_rank)) ? 'selected="selected" ' : '') . '>' . $user->lang['USER_DEFAULT'] . '</option>';
|
|
if ($row = $db->sql_fetchrow($result))
|
|
{
|
|
do
|
|
{
|
|
$selected = (!empty($group_rank) && $row['rank_id'] == $group_rank) ? ' selected="selected"' : '';
|
|
$rank_options .= '<option value="' . $row['rank_id'] . '"' . $selected . '>' . $row['rank_title'] . '</option>';
|
|
}
|
|
while ($row = $db->sql_fetchrow($result));
|
|
}
|
|
|
|
$type_open = ($group_type == GROUP_OPEN) ? ' checked="checked"' : '';
|
|
$type_closed = ($group_type == GROUP_CLOSED) ? ' checked="checked"' : '';
|
|
$type_hidden = ($group_type == GROUP_HIDDEN) ? ' checked="checked"' : '';
|
|
$type_free = ($group_type == GROUP_FREE) ? ' checked="checked"' : '';
|
|
|
|
$sql = "SELECT u.user_id, u.username
|
|
FROM " . GROUPS_MODERATOR_TABLE . " gm, " . USERS_TABLE . " u
|
|
WHERE gm.group_id = $group_id
|
|
AND u.user_id = gm.user_id";
|
|
// $result = $db->sql_query($sql);
|
|
|
|
?>
|
|
|
|
<form method="post" action="admin_groups.<?php echo "$phpEx$SID&action=edit"; ?>"><table class="bg" width="90%" cellspacing="1" cellpadding="4" border="0" align="center">
|
|
<tr>
|
|
<th colspan="2"><?php echo $user->lang['GROUP_DETAILS']; ?></th>
|
|
</tr>
|
|
<tr>
|
|
<td class="row2"><?php echo $user->lang['GROUP_NAME']; ?>:</td>
|
|
<td class="row1"><input type="text" name="group_name" value="<?php echo (!empty($group_name)) ? $group_name : ''; ?>" size="40" maxlength="40" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="row2"><?php echo $user->lang['GROUP_DESC']; ?>:</td>
|
|
<td class="row1"><input type="text" name="group_description" value="<?php echo (!empty($group_description)) ? $group_description : ''; ?>" size="40" maxlength="255" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="row2"><?php echo $user->lang['GROUP_TYPE']; ?>:<br /><span class="gensmall"><?php echo $user->lang['GROUP_TYPE_EXPLAIN']; ?></span></td>
|
|
<td class="row1" nowrap="nowrap"><input type="radio" name="group_type" value="<?php echo GROUP_FREE . '"' . $type_free; ?> /> <?php echo $user->lang['GROUP_OPEN']; ?> <input type="radio" name="group_type" value="<?php echo GROUP_OPEN . '"' . $type_open; ?> /> <?php echo $user->lang['GROUP_REQUEST']; ?> <input type="radio" name="group_type" value="<?php echo GROUP_CLOSED . '"' . $type_closed; ?> /> <?php echo $user->lang['GROUP_CLOSED']; ?> <input type="radio" name="group_type" value="<?php echo GROUP_HIDDEN . '"' . $type_hidden; ?> /> <?php echo $user->lang['GROUP_HIDDEN']; ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th colspan="2"><?php echo $user->lang['GROUP_SETTINGS_SAVE']; ?></th>
|
|
</tr>
|
|
<tr>
|
|
<td class="row3" colspan="2"><span class="gensmall"><?php echo $user->lang['GROUP_SETTINGS_SAVE_EXPLAIN']; ?></span></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="row2"><?php echo $user->lang['GROUP_COLOR']; ?>:<br /><span class="gensmall"><?php echo $user->lang['GROUP_COLOR_EXPLAIN']; ?></span></td>
|
|
<td class="row1"><input type="text" name="group_color" value="<?php echo (!empty($group_color)) ? $group_color : ''; ?>" size="6" maxlength="6" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="row2"><?php echo $user->lang['GROUP_RANK']; ?>:</td>
|
|
<td class="row1"><select name="group_rank"><?php echo $rank_options; ?></select></td>
|
|
</tr>
|
|
<!-- tr>
|
|
<td class="row2"><?php echo $user->lang['GROUP_AVATAR']; ?>:<br /><span class="gensmall"><?php echo $user->lang['GROUP_AVATAR_EXPLAIN']; ?></span></td>
|
|
<td class="row1"> </td>
|
|
</tr -->
|
|
<tr>
|
|
<th colspan="2"><?php echo $user->lang['GROUP_SETTINGS']; ?></th>
|
|
</tr>
|
|
<tr>
|
|
<td class="row3" colspan="2"><span class="gensmall"><?php echo $user->lang['GROUP_SETTINGS_EXPLAIN']; ?></span></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="row2"><?php echo $user->lang['GROUP_LANG']; ?>:</td>
|
|
<td class="row1"><select name="tz"><?php echo '<option value="-1" selected="selected">' . $user->lang['USER_DEFAULT'] . '</option>' . language_select(); ?></select></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="row2"><?php echo $user->lang['GROUP_TIMEZONE']; ?>:</td>
|
|
<td class="row1"><select name="tz"><?php echo '<option value="-1" selected="selected">' . $user->lang['USER_DEFAULT'] . '</option>' . tz_select(); ?></select></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="row2"><?php echo $user->lang['GROUP_DST']; ?>:</td>
|
|
<td class="row1"><input type="radio" name="dst" value="0" /> <?php echo $user->lang['DISABLED']; ?> <input type="radio" name="dst" value="1" /> <?php echo $user->lang['ENABLED']; ?> <input type="radio" name="dst" value="-1" checked="checked" /> <?php echo $user->lang['USER_DEFAULT']; ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="row2"><?php echo $user->lang['GROUP_FORCE_SET']; ?>:<br /><span class="gensmall"><?php echo $user->lang['GROUP_FORCE_SET_EXPLAIN']; ?></span></td>
|
|
<td class="row1"><input type="radio" name="force_set" value="1" checked="checked" /> <?php echo $user->lang['YES']; ?> <input type="radio" name="force_set" value="0" /> <?php echo $user->lang['NO']; ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="cat" colspan="2" align="center"><input class="mainoption" type="submit" name="submit" value="<?php echo $user->lang['SUBMIT']; ?>" /> <input class="liteoption" type="reset" value="<?php echo $user->lang['RESET']; ?>" /></td>
|
|
</tr>
|
|
</table></form>
|
|
|
|
<?php
|
|
|
|
break;
|
|
|
|
case 'add':
|
|
break;
|
|
|
|
case 'delete':
|
|
break;
|
|
|
|
case 'list':
|
|
|
|
?>
|
|
|
|
<h1><?php echo $user->lang['GROUP_MEMBERS']; ?></h1>
|
|
|
|
<p><?php echo $user->lang['GROUP_LIST_EXPLAIN']; ?></p>
|
|
|
|
<form method="post" action="admin_groups.<?php echo "$phpEx$SID&action=list"; ?>"><table class="bg" width="80%" cellspacing="1" cellpadding="4" border="0" align="center">
|
|
<tr>
|
|
<th colspan="2"><?php echo $user->lang['']; ?></th>
|
|
</tr>
|
|
</table></form>
|
|
|
|
<?php
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// Default mangement page
|
|
|
|
?>
|
|
|
|
<h1><?php echo $user->lang['MANAGE']; ?></h1>
|
|
|
|
<p><?php echo $user->lang['GROUP_MANAGE_EXPLAIN']; ?></p>
|
|
|
|
<h1><?php echo $user->lang['USER_DEF_GROUPS']; ?></h1>
|
|
|
|
<p><?php echo $user->lang['USER_DEF_GROUPS_EXPLAIN']; ?></p>
|
|
|
|
<form method="post" action="admin_groups.<?php echo "$phpEx$SID"; ?>"><table class="bg" width="80%" cellspacing="1" cellpadding="4" border="0" align="center">
|
|
<tr>
|
|
<th width="95%"><?php echo $user->lang['MANAGE']; ?></th>
|
|
<th><?php echo $user->lang['ACTION']; ?></th>
|
|
</tr>
|
|
<?php
|
|
|
|
$sql = "SELECT ug.group_id, u.user_id, u.username
|
|
FROM " . USERS_TABLE . " u, " . USER_GROUP_TABLE . " ug, " . GROUPS_TABLE . " g
|
|
WHERE ug.user_pending = 1
|
|
AND g.group_type = " . GROUP_SPECIAL . "
|
|
AND u.user_id = ug.user_id
|
|
ORDER BY ug.group_id, u.user_id";
|
|
$result = $db->sql_query($sql);
|
|
|
|
$pending = array();
|
|
if ($row = $db->sql_fetchrow($result) )
|
|
{
|
|
do
|
|
{
|
|
$pending[$row['group_id']][] = $row;
|
|
}
|
|
while ($row = $db->sql_fetchrow($result) );
|
|
}
|
|
$db->sql_freeresult($result);
|
|
|
|
$sql = "SELECT group_id, group_name, group_type
|
|
FROM " . GROUPS_TABLE . "
|
|
ORDER BY group_type ASC, group_name";
|
|
$result = $db->sql_query($sql);
|
|
|
|
$special_toggle = false;
|
|
if ($row = $db->sql_fetchrow($result) )
|
|
{
|
|
do
|
|
{
|
|
|
|
if ($row['group_type'] == GROUP_SPECIAL && !$special_toggle)
|
|
{
|
|
$special_toggle = true;
|
|
|
|
?>
|
|
<tr>
|
|
<td class="cat" colspan="2" align="center"><input class="mainoption" type="submit" name="addgroup" value="<?php echo $user->lang['ADD_NEW_GROUP']; ?>" /></td>
|
|
</tr>
|
|
</table>
|
|
|
|
<h1><?php echo $user->lang['SPECIAL_GROUPS']; ?></h1>
|
|
|
|
<p><?php echo $user->lang['SPECIAL_GROUPS_EXPLAIN']; ?></p>
|
|
|
|
<table class="bg" width="80%" cellspacing="1" cellpadding="4" border="0" align="center">
|
|
<tr>
|
|
<th width="95%"><?php echo $user->lang['MANAGE']; ?></th>
|
|
<th><?php echo $user->lang['ACTION']; ?></th>
|
|
</tr>
|
|
<?php
|
|
|
|
}
|
|
|
|
$row_class = ($row_class != 'row1') ? 'row1' : 'row2';
|
|
|
|
$group_id = $row['group_id'];
|
|
$group_name = (!empty($user->lang[$row['group_name']]))? $user->lang[$row['group_name']] : $row['group_name'];
|
|
|
|
?>
|
|
<tr>
|
|
<td class="<?php echo $row_class; ?>"><a href="admin_groups.<?php echo "$phpEx$SID&action=list&g=$group_id"; ?>"><?php echo $group_name;?></a></td>
|
|
<td class="<?php echo $row_class; ?>" align="center" nowrap="nowrap"> <a href="admin_groups.<?php echo "$phpEx$SID&action=add&g=$group_id"; ?>"><?php echo $user->lang['ADD']; ?></a> | <a href="admin_groups.<?php echo "$phpEx$SID&action=edit&g=$group_id"; ?>"><?php echo $user->lang['EDIT']; ?></a><?php
|
|
|
|
if (!$special_toggle)
|
|
{
|
|
|
|
?> | <a href="admin_groups.<?php echo "$phpEx$SID&action=delete&g=$group_id"; ?>"><?php echo $user->lang['DELETE']; ?></a><?php
|
|
|
|
}
|
|
|
|
?> </td>
|
|
</tr>
|
|
<?php
|
|
|
|
if (is_array($pending[$group_id]) )
|
|
{
|
|
foreach ($pending[$group_id] as $pending_ary )
|
|
{
|
|
$row_class = ($row_class != 'row1') ? 'row1' : 'row2';
|
|
|
|
?>
|
|
<tr>
|
|
<td class="<?php echo $row_class; ?>"><?php echo $pending_ary['username'];?></td>
|
|
<td class="<?php echo $row_class; ?>" align="center"><input class="liteoption" type="submit" name="approve[<?php echo $pending_ary['user_id']; ?>]" value="<?php echo $user->lang['Approve_selected'];?>" /> <input class="liteoption" type="submit" name="decline[<?php echo $pending_ary['user_id']; ?>]" value="<?php echo $user->lang['Deny_selected'];?>" /></td>
|
|
</tr>
|
|
<?php
|
|
|
|
}
|
|
}
|
|
}
|
|
while ($row = $db->sql_fetchrow($result) );
|
|
}
|
|
$db->sql_freeresult($result);
|
|
|
|
?>
|
|
</table></form>
|
|
|
|
<?php
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
page_footer();
|
|
|
|
?>
|