<?php
include ('header.php');
/**********************************************************************
* Copyright notice Ja2BU 1.1.
*
* (c) 2011 Predrag Rukavina - admin[at]phpform[dot]net
* All rights reserved
*
* This script is part of the Ja2BU project.
* The Ja2BU project 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., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*
* This copyright notice MUST appear in all copies of the script!
************************************************************************/
include ('../classes/class.GenericEasyPagination.php');
?>
<script>
function goto(site) {
var msg = confirm("Are you sure you want to delete this user? This action cannot be undone!")
if (msg) {window.location.href = site}
else (null)
}
function gotos(sites) {
var msg = confirm("Are you sure?")
if (msg) {window.location.href = sites}
else (null)
}
</script>
<div id="vforms">
<div id="cconfig">User Privileges and Roles</div>
<strong>User Roles</strong><br />
1. <font color="#555555">Commenter. Can only post comments</font><br />
2. <font color="#556E89">Editor. Can add news and post comments</font><br />
<br />
<?php
if(isset($_POST['submit'])) {
$document = $_POST['document'];
?>
<br />Username<br />
<form name="myforma" action="usersearch.php" method="post">
<input type="text" id="incc" value="<?php echo @$document ?>" name="document" /><br /><br />
<input type="submit" class="topicbuton" name="submit" value="Search" />
</form>
<br />
<?php
if(@$_GET["page"] != ""):
$page = @$_GET["page"];
else:
$page = 1;
endif;
define('RECORDS_BY_PAGE',6);
define('CURRENT_PAGE',$page);
$strSQL = "SELECT * FROM users where username like '%$document%' ORDER BY username";
$conn->SetFetchMode(ADODB_FETCH_ASSOC);
$rs = $conn->PageExecute($strSQL,RECORDS_BY_PAGE,CURRENT_PAGE);
if(!$rs->EOF) {
$recordsFound = $rs->_maxRecordCount;
echo "<br />Records Lits:<br />";
while(!$rs->EOF) {
if($rs->fields['active'] == 0) { ?>
<font style="color:#777777"><?php echo $rs->fields['username'] ?> [<?php echo $rs->fields['email'] ?>]<br />
<a href="userset.php?id=<?php echo $rs->fields['usid'] ?>&ref=4"><font style="color:#555">Approve [email not confirmed]</font></a></font><br />
<?php } else { ?>
<br /><font color="#4F5870"><?php echo $rs->fields['username'] ?> [<?php echo $rs->fields['email'] ?>]<br />
<?php if($rs->fields['active'] == 3) { ?>
<a href="userset.php?id=<?php echo $rs->fields['usid'] ?>&ref=4"><font color="#EE6300">Activate (Account Pending Approval)</font></a></font><br />
<?php }
}
echo "<a href=\"javascript:goto('userset.php?id=".$rs->fields["usid"]."&ref=7')\"><font color=\"#BB0000\">Delete</font></a>";
echo " <a href=\"javascript:gotos('userset.php?id=".$rs->fields["usid"]."&ref=1')\"><font color=\"#555555\">Commenter</font></a>";
echo " <a href=\"javascript:gotos('userset.php?id=".$rs->fields["usid"]."&ref=2')\"><font color=\"#556E89\">Editor</font></a><br />";
$rs->moveNext();
}
$GenericEasyPagination = new GenericEasyPagination(CURRENT_PAGE,RECORDS_BY_PAGE,"eng");
$GenericEasyPagination->setTotalRecords($recordsFound);
echo "<br />";
echo "<strong>Records found: </strong>".$recordsFound;
echo "<br />Records ";
echo $GenericEasyPagination->getListCurrentRecords();
echo "<br />";
echo $GenericEasyPagination->getCurrentPages();
echo "<br />";
}
$conn->Close();
} else {
@$document = $_POST['document'];
?>
<br />Username<br />
<form name="myforma" action="usersearch.php" method="post">
<input type="text" id="incc" value="<?php echo @$document ?>" name="document" /><br /><br />
<input type="submit" class="topicbuton" name="submit" value="Search" />
</form>
</div>
<?php
$conn->Close();
}
include ('footer.php');
/**************************************
* Revision: v.1.1.
***************************************/
?>