<?php
require_once("../includes/config.php");
require_once("../includes/functions/func.global.php");
require_once("../includes/functions/loggincheck.php");
require_once('../includes/lang/admin/lang_'.$config['lang'].'.php');
require_once("class.menu.php");
// Connect to database
db_connect($config);
$obj = new Menu();
$nav = $obj->get_js_menu(0,$config,$lang);
if(isset($_GET['pageno']))
{
$pageno = $_GET['pageno'];
}
else
{
$pageno = 1;
}
if(!isset($_GET['sortby']))
{
$_GET['sortby']='admin_id';
}
if(!isset($_GET['direction']))
{
$_GET['direction']='DESC';
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>PHPDug Admin - Edit Usergroups</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" type="text/css" href="images/style.css">
<SCRIPT LANGUAGE="JavaScript" SRC="menu/JSCookMenu.js"></SCRIPT>
<LINK REL="stylesheet" HREF="menu/themes/Office/theme.css" TYPE="text/css">
<SCRIPT LANGUAGE="JavaScript" SRC="menu/themes/Office/theme.js"></SCRIPT>
<LINK REL="stylesheet" HREF="menu/themes/Office/theme.css" TYPE="text/css">
<SCRIPT LANGUAGE="JavaScript" SRC="menu/themes/Office/theme.js"></SCRIPT>
<script language="JavaScript">
<!--
function checkBox(theBox){
var aBox = theBox.form["list[]"];
var selAll = false;
var i;
for(i=0;i<aBox.length;i++){
if(aBox[i].checked==false) selAll=true;
}
if(theBox.name=="selall"){
for(i=0;i<aBox.length;i++){
aBox[i].checked = selAll;
}
selAll = !selAll;
}
//theBox.form.selall.checked = selAll;
}
function init(){
var theForm = document.f1;
var aBox = theForm["list[]"];
var selAll = false;
var i;
for(i=0;i<aBox.length;i++){
if(aBox[i].checked==false) selAll=true;
aBox[i].onclick = function(){checkBox(this)};
}
//theForm.selall.checked = selAll;
}
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}
//-->
</script>
</head>
<body>
<!--Start top-->
<table width="850" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="100%" height="42" align="left" background="images/bg_top.gif"><a href="index.php"><img src="images/logo.gif" width="127" height="37" hspace="10" border="0"></a></td>
</tr>
<tr>
<td><img src="images/dot.gif" width="1" height="1" alt=""></td>
</tr>
</table>
<!--End top-->
<!--Start topmenu-->
<table width="850" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td bgcolor="#F0F0F0" height="25" style="padding-left:20px;" id="menu"><SCRIPT language="JavaScript" type="text/javascript">
var myMenu =
// Start the menu
[
<?php echo $nav; ?>
];
// Output the menu
cmDraw ('menu', myMenu, 'hbr', cmThemeOffice, 'ThemeOffice');
</SCRIPT></td>
</tr>
<tr>
<td bgcolor="#333333"><img src="images/dot.gif" width="1" height="1" alt=""></td>
</tr>
</table>
<br>
<!--End topmenu-->
<!--Start heading page-->
<table width="850" cellpadding="0" cellspacing="0" border="0" align="center">
<tr>
<td class="heading"><img src="images/icons/icon_editrule.gif" width="21" height="22" alt="" align="absmiddle" hspace="5">Edit Usergroups</td>
</tr>
<tr>
<td bgcolor="#333333"><img src="images/dot.gif" width="1" height="1" alt=""></td>
</tr>
</table>
<!--End heading page-->
<!--Start form-->
<br>
<table width="850" border="0" align="center" cellpadding="0" cellspacing="0" style="border:1px solid #CCCCCC;">
<tr>
<td align="center" bgcolor="#F6F6F6" style="padding:15px;"><div align="right">
<form action="usergroup_delete.php" method="post" name="f1" id="f1">
<div align="right"> <br>
</div>
<table width="99%" border="0" align="center" cellpadding="2" cellspacing="0">
<tr bgcolor="#FF9900">
<td width="50" height="30"><div align="center">
<input type="checkbox" name="selall" value="checkbox" onClick="checkBox(this)">
</div></td>
<td height="30"><span class="rowheader">Usergroup</span></td>
<td width="150" height="30"><span class="rowheader"><?php echo $lang['OPTIONS']; ?></span></td>
</tr>
<tr bgcolor="#000000">
<td height="1" style="padding:0px;" colspan="3"><img src="images/dot.gif" width="1" height="1" alt=""></td>
</tr>
<?php
$count = 0;
$counter = 0;
//Pagination Continued
$query = "SELECT 1 FROM ".$config['db']['pre']."usergroups";
$result = mysql_query($query);
$numrows = mysql_num_rows($result);
$lastpage = ceil($numrows/10);
if ($pageno < 1)
{
$pageno = 1;
}
elseif($pageno > $lastpage)
{
$pageno = $lastpage;
}
$limit = 'LIMIT '.(($pageno-1)*10) .',10';
$query = "SELECT group_id,group_name,group_removable FROM ".$config['db']['pre']."usergroups ".$limit;
$query_result = mysql_query($query);
while ($info = @mysql_fetch_array($query_result))
{
$counter++;
if($count == 0)
{
$colour = '#F7F7F7';
$count = 1;
}
else
{
$colour = '#EFEFEF';
$count = 0;
}
?>
<tr bgcolor="<?php echo $colour; ?>">
<td width="50" height="25" align="center"><input type="hidden" name="titles[]" id="titles[]" value="<?=$info['group_name'];?>">
<?php if($info['group_removable'] == 0){ ?>
<input type="checkbox" name="listdis[]" id="listdis[]" value="<?php echo $info['group_id'];?>" disabled>
<?php } else { ?>
<input type="checkbox" name="list[]" id="list[]" value="<?php echo $info['group_id'];?>">
<?php } ?>
</td>
<td height="25"><span class="style5"><?php echo stripslashes($info['group_name']);?></span></td>
<td height="25">
<table border="0" cellpadding="0" cellspacing="0"><tr><td>
<select name="amenu<?=$info['group_id'];?>" id="amenu<?=$info['group_id'];?>" onChange="MM_jumpMenu('parent',this,0)" style="width:145px">
<option value=""><?php echo $lang['OPTIONS']; ?></option>
<option value="usergroup_edit.php?id=<?=$info['group_id'];?>">View/Edit Usergroup</option>
<? if($info['group_removable']){ ?><option value="usergroup_delete.php?id=<?=$info['group_id'];?>">Delete Usergroup</option><? } ?>
</select>
</td>
</tr>
</table>
</td>
</tr>
<?php
}
?>
<tr bgcolor="#000000">
<td height="1" style="padding:0px;" colspan="3"><img src="images/dot.gif" width="1" height="1" alt=""></td>
</tr>
</table>
<div align="left"> <br>
<table width="99%" border="0" align="center" cellpadding="2" cellspacing="0">
<tr>
<td width="200" valign="middle"><?php echo $lang['WITHSEL']; ?> <a href="#" onClick="document.f1.action='usergroup_edit.php'; document.f1.submit();"><img src="images/button_edit.gif" width="12" height="13" border="0"></a>
<input name="imageField" type="image" src="images/button_empty.gif" width="11" height="13" border="0"></td>
<td valign="middle"><?php
if($numrows==0)
{
$st=0;
$en=0;
}
elseif($lastpage==$pageno)
{
$st=$numrows-$counter+1;
$en=$numrows;
}
else
{
$st=$counter*$pageno-$rows_per_page+1;
$en=$counter*$pageno;
}
?>
<div align="center"><?php echo $lang['SHOWING']; ?> <? echo $st ?>-<? echo $en; ?> <?php echo $lang['OF']; ?> <? echo $numrows; ?> <?php echo $lang['RESULTS']; ?></div></td>
<td width="200" valign="middle"><div align="right">
<?php
if ($pageno != 1 AND $numrows!=0)
{
echo " <a href='{$_SERVER['PHP_SELF']}?pageno=1&sortby=".$_GET['sortby']."&direction=".$_GET['direction']."&locale=".$_GET['locale']."'><<</a> ";
$prevpage = $pageno-1;
echo " <a href='{$_SERVER['PHP_SELF']}?pageno=$prevpage&sortby=".$_GET['sortby']."&direction=".$_GET['direction']."&locale=".$_GET['locale']."'><</a> ";
}
echo " ( Page $pageno of $lastpage ) ";
if ($pageno != $lastpage AND $numrows!=0)
{
$nextpage = $pageno+1;
echo " <a href='{$_SERVER['PHP_SELF']}?pageno=$nextpage&sortby=".$_GET['sortby']."&direction=".$_GET['direction']."&locale=".$_GET['locale']."'>></a> "; echo " <a href='{$_SERVER['PHP_SELF']}?pageno=$lastpage&sortby=".$_GET['sortby']."&direction=".$_GET['direction']."&locale=".$_GET['locale']."'>>></a> ";
}
?>
</div></td>
</tr>
</table>
</div>
</form>
</div></td>
</tr>
</table>
<!--End form-->
<br><br>
<!--Start bottom-->
<table width="850" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td bgcolor="#333333"><img src="images/dot.gif" width="1" height="1" alt=""></td>
</tr>
<tr>
<td style="padding:15px;" align="center">
<span class="copyright">Copyright © 2008 <a href="http://www.kubelabs.com/phpdug/" class="copyright" target="_blank">Kubelabs.com</a> All Rights Reserved.</span></td>
</tr>
</table>
<br>
<br>
<!--End bottom-->
</body>
</html>