2003-04-23 21:41:48 +00:00
|
|
|
|
<?php
|
|
|
|
|
/*
|
|
|
|
|
$Id$
|
|
|
|
|
|
|
|
|
|
This code is part of LDAP Account Manager (http://www.sourceforge.net/projects/lam)
|
2003-07-01 19:49:57 +00:00
|
|
|
|
Copyright (C) 2003 Roland Gruber, Leonhard Walchsh<EFBFBD>usl
|
2003-04-23 21:41:48 +00:00
|
|
|
|
|
|
|
|
|
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.
|
2003-07-08 08:54:34 +00:00
|
|
|
|
|
2003-04-23 21:41:48 +00:00
|
|
|
|
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 detaexils.
|
2003-07-08 08:54:34 +00:00
|
|
|
|
|
2003-04-23 21:41:48 +00:00
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
*/
|
2003-05-06 23:50:29 +00:00
|
|
|
|
|
2003-04-23 21:41:48 +00:00
|
|
|
|
include_once ("../../lib/config.inc");
|
|
|
|
|
include_once("../../lib/ldap.inc");
|
|
|
|
|
|
2003-05-21 17:15:17 +00:00
|
|
|
|
// used to display status messages
|
|
|
|
|
include_once ("../../lib/status.inc");
|
|
|
|
|
|
2003-04-23 21:41:48 +00:00
|
|
|
|
// start session
|
|
|
|
|
session_save_path("../../sess");
|
|
|
|
|
@session_start();
|
|
|
|
|
|
2003-06-29 11:16:03 +00:00
|
|
|
|
setlanguage();
|
|
|
|
|
|
2003-05-21 22:51:05 +00:00
|
|
|
|
// copy HTTP-GET variables to HTTP-POST
|
|
|
|
|
$_POST = $_POST + $_GET;
|
|
|
|
|
|
2003-06-30 20:04:59 +00:00
|
|
|
|
$usr_units = $_SESSION['usr_units'];
|
|
|
|
|
session_register('usr_units');
|
|
|
|
|
|
2003-05-04 11:09:09 +00:00
|
|
|
|
// check if button was pressed and if we have to add/delete a user
|
|
|
|
|
if ($_POST['new_user'] || $_POST['del_user']){
|
2003-05-06 23:50:29 +00:00
|
|
|
|
// add new user
|
|
|
|
|
if ($_POST['new_user']){
|
|
|
|
|
echo("<meta http-equiv=\"refresh\" content=\"0; URL=../account.php?type=user\">");
|
|
|
|
|
exit;
|
|
|
|
|
}
|
|
|
|
|
// delete user(s)
|
|
|
|
|
if ($_POST['del_user']){
|
|
|
|
|
// search for checkboxes
|
|
|
|
|
$users = array_keys($_POST, "on");
|
|
|
|
|
$userstr = implode(";", $users);
|
|
|
|
|
echo("<meta http-equiv=\"refresh\" content=\"0; URL=../delete.php?type=user&DN='$userstr'\">");
|
|
|
|
|
}
|
|
|
|
|
exit;
|
2003-05-04 11:09:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-07-29 11:52:26 +00:00
|
|
|
|
echo $_SESSION['header'];
|
2003-06-29 11:16:03 +00:00
|
|
|
|
|
2003-04-23 21:41:48 +00:00
|
|
|
|
echo "<html><head><title>listusers</title>\n";
|
|
|
|
|
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../../style/layout.css\">\n";
|
|
|
|
|
echo "</head><body>\n";
|
|
|
|
|
echo "<script src=\"../../lib/functions.js\" type=\"text/javascript\" language=\"javascript\"></script>\n";
|
|
|
|
|
|
|
|
|
|
// generate attribute-description table
|
|
|
|
|
$attr_array; // list of LDAP attributes to show
|
|
|
|
|
$desc_array; // list of descriptions for the attributes
|
|
|
|
|
$attr_string = $_SESSION["config"]->get_userlistAttributes();
|
|
|
|
|
$temp_array = explode(";", $attr_string);
|
|
|
|
|
$hash_table = $_SESSION["ldap"]->attributeUserArray();
|
2003-05-06 23:50:29 +00:00
|
|
|
|
$page = $_GET["page"];
|
|
|
|
|
if (!$page)
|
|
|
|
|
$page = 1;
|
2003-05-05 23:06:12 +00:00
|
|
|
|
|
2003-05-08 22:43:33 +00:00
|
|
|
|
// take maximum count of user entries shown on one page out of session
|
|
|
|
|
if ($_SESSION["config"]->get_MaxListEntries() <= 0)
|
|
|
|
|
$max_pageentrys = 10; // default setting, if not yet set
|
|
|
|
|
else
|
|
|
|
|
$max_pageentrys = $_SESSION["config"]->get_MaxListEntries();
|
2003-05-07 21:51:18 +00:00
|
|
|
|
|
|
|
|
|
|
2003-04-23 21:41:48 +00:00
|
|
|
|
for ($i = 0; $i < sizeof($temp_array); $i++) {
|
2003-05-06 23:50:29 +00:00
|
|
|
|
// if value is predifined, look up description in hash_table
|
|
|
|
|
if (substr($temp_array[$i],0,1) == "#") {
|
|
|
|
|
$attr = substr($temp_array[$i],1);
|
|
|
|
|
$attr_array[$i] = $attr;
|
|
|
|
|
$desc_array[] = $hash_table[$attr];
|
|
|
|
|
}
|
|
|
|
|
// if not predefined, the attribute is seperated by a ":" from description
|
|
|
|
|
else {
|
|
|
|
|
$attr = explode(":", $temp_array[$i]);
|
|
|
|
|
$attr_array[$i] = $attr[0];
|
|
|
|
|
$desc_array[$i] = $attr[1];
|
|
|
|
|
}
|
2003-04-23 21:41:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-05-09 10:16:17 +00:00
|
|
|
|
$sortattrib = $_GET["sortattrib"];
|
|
|
|
|
if (!$sortattrib)
|
|
|
|
|
$sortattrib = strtolower($attr_array[0]);
|
|
|
|
|
|
2003-06-30 20:04:59 +00:00
|
|
|
|
// check search suffix
|
|
|
|
|
if ($_POST['usr_suffix']) $usr_suffix = $_POST['usr_suffix']; // new suffix selected via combobox
|
|
|
|
|
elseif ($_SESSION['usr_suffix']) $usr_suffix = $_SESSION['usr_suffix']; // old suffix from session
|
2003-07-02 16:39:59 +00:00
|
|
|
|
else $usr_suffix = $_SESSION["config"]->get_UserSuffix(); // default suffix
|
2003-06-30 20:04:59 +00:00
|
|
|
|
session_register('usr_suffix');
|
|
|
|
|
|
2003-05-09 10:16:17 +00:00
|
|
|
|
|
2003-05-21 22:51:05 +00:00
|
|
|
|
// generate search filter for sort links
|
|
|
|
|
$searchfilter = "";
|
|
|
|
|
for ($k = 0; $k < sizeof($desc_array); $k++) {
|
|
|
|
|
if ($_POST["filter" . strtolower($attr_array[$k])]) {
|
2003-07-04 16:25:05 +00:00
|
|
|
|
$searchfilter = $searchfilter . "&filter" .
|
2003-05-21 22:51:05 +00:00
|
|
|
|
strtolower($attr_array[$k]) . "=".
|
|
|
|
|
$_POST["filter" . strtolower($attr_array[$k])];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2003-05-05 23:06:12 +00:00
|
|
|
|
// configure search filter
|
2003-04-23 21:41:48 +00:00
|
|
|
|
// Users have the attribute "*"
|
2003-06-30 20:04:59 +00:00
|
|
|
|
if ($_SESSION['config']->get_samba3() == "yes") {
|
|
|
|
|
// Samba users have the attribute "sambaSamAccount" and end with "$"
|
2003-07-01 19:49:57 +00:00
|
|
|
|
$filter = "(&(objectClass=sambaSamAccount) (!(uid=*$))";
|
2003-06-30 20:04:59 +00:00
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
// Samba users have the attribute "sambaAccount" and end with "$"
|
2003-07-01 19:49:57 +00:00
|
|
|
|
$filter = "(&(objectClass=sambaAccount) (!(uid=*$))";
|
2003-06-30 20:04:59 +00:00
|
|
|
|
}
|
2003-05-05 23:06:12 +00:00
|
|
|
|
for ($k = 0; $k < sizeof($desc_array); $k++) {
|
|
|
|
|
if ($_POST["filter" . strtolower($attr_array[$k])])
|
|
|
|
|
$filter = $filter . "(" . strtolower($attr_array[$k]) . "=" .
|
|
|
|
|
$_POST["filter" . strtolower($attr_array[$k])] . ")";
|
|
|
|
|
else
|
2003-05-21 17:15:17 +00:00
|
|
|
|
$_POST["filter" . strtolower($attr_array[$k])] = "";
|
2003-05-05 23:06:12 +00:00
|
|
|
|
}
|
|
|
|
|
$filter = $filter . ")";
|
|
|
|
|
|
2003-05-07 21:51:18 +00:00
|
|
|
|
// read entries only from ldap server if not yet stored in session or if refresh
|
|
|
|
|
// button is pressed or if filter is applied
|
2003-05-21 22:51:05 +00:00
|
|
|
|
if ($_SESSION["userlist"] && $_GET["norefresh"]) {
|
2003-06-30 20:04:59 +00:00
|
|
|
|
usort ($_SESSION["userlist"], "cmp_array");
|
2003-05-06 23:50:29 +00:00
|
|
|
|
$userinfo = $_SESSION["userlist"];
|
|
|
|
|
} else {
|
|
|
|
|
$attrs = $attr_array;
|
|
|
|
|
$sr = @ldap_search($_SESSION["ldap"]->server(),
|
2003-06-30 20:04:59 +00:00
|
|
|
|
$usr_suffix,
|
2003-05-08 22:43:33 +00:00
|
|
|
|
$filter, $attrs);
|
2003-05-06 23:50:29 +00:00
|
|
|
|
if ($sr) {
|
|
|
|
|
$userinfo = ldap_get_entries ($_SESSION["ldap"]->server, $sr);
|
|
|
|
|
ldap_free_result ($sr);
|
2003-07-04 16:25:05 +00:00
|
|
|
|
if ($userinfo["count"] == 0) StatusMessage("WARN", "", _("No Users found!"));
|
2003-05-21 17:15:17 +00:00
|
|
|
|
|
2003-05-21 22:51:05 +00:00
|
|
|
|
// delete first array entry which is "count"
|
2003-05-06 23:50:29 +00:00
|
|
|
|
array_shift($userinfo);
|
2003-06-30 20:04:59 +00:00
|
|
|
|
usort ($userinfo, "cmp_array");
|
2003-05-06 23:50:29 +00:00
|
|
|
|
$_SESSION["userlist"] = $userinfo;
|
|
|
|
|
}
|
2003-06-30 20:04:59 +00:00
|
|
|
|
else
|
2003-05-21 17:15:17 +00:00
|
|
|
|
StatusMessage("ERROR",
|
2003-07-01 19:49:57 +00:00
|
|
|
|
_("LDAP Search failed! Please check your preferences."),
|
2003-07-02 16:39:59 +00:00
|
|
|
|
_("No Users found!"));
|
2003-04-23 21:41:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-05-07 21:51:18 +00:00
|
|
|
|
$user_count = sizeof ($_SESSION["userlist"]);
|
2003-05-06 23:50:29 +00:00
|
|
|
|
|
2003-05-07 21:51:18 +00:00
|
|
|
|
echo ("<form action=\"listusers.php\" method=\"post\">\n");
|
2003-05-06 23:50:29 +00:00
|
|
|
|
|
2003-05-27 19:30:41 +00:00
|
|
|
|
// display table only if users exist in LDAP
|
|
|
|
|
if ($user_count != 0) {
|
2003-04-23 21:41:48 +00:00
|
|
|
|
|
2003-05-27 19:30:41 +00:00
|
|
|
|
// create navigation bar on top of user table
|
|
|
|
|
draw_navigation_bar ($user_count);
|
|
|
|
|
|
|
|
|
|
echo ("<br />");
|
2003-04-23 21:41:48 +00:00
|
|
|
|
}
|
2003-05-27 19:30:41 +00:00
|
|
|
|
|
|
|
|
|
// print user table header
|
|
|
|
|
echo "<table rules=\"all\" class=\"userlist\" width=\"100%\">\n";
|
|
|
|
|
|
|
|
|
|
|
2003-07-01 19:49:57 +00:00
|
|
|
|
echo "<tr class=\"userlist-head\"><th width=22 height=34></th><th></th>\n";
|
2003-05-27 19:30:41 +00:00
|
|
|
|
// table header
|
|
|
|
|
for ($k = 0; $k < sizeof ($desc_array); $k++) {
|
|
|
|
|
if ($sortattrib == strtolower($attr_array[$k]))
|
2003-07-01 19:49:57 +00:00
|
|
|
|
echo "<th class=\"userlist-activecolumn\">\n";
|
2003-05-27 19:30:41 +00:00
|
|
|
|
else
|
|
|
|
|
echo "<th>\n";
|
2003-06-30 20:04:59 +00:00
|
|
|
|
echo "<a class=\"userlist\" href=\"listusers.php?norefresh=1&sortattrib=" .
|
2003-07-01 19:49:57 +00:00
|
|
|
|
strtolower($attr_array[$k]) . $searchfilter . "\">" .
|
2003-05-27 19:30:41 +00:00
|
|
|
|
$desc_array[$k] . "</a></th>\n";
|
|
|
|
|
}
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
|
2003-07-01 19:49:57 +00:00
|
|
|
|
echo "<tr class=\"userlist\"><th width=22 height=34></th><th>\n";
|
2003-05-27 19:30:41 +00:00
|
|
|
|
echo "<input type=\"submit\" name=\"apply_filter\" value=\"" . _("Apply") . "\">";
|
|
|
|
|
echo "</th>\n";
|
|
|
|
|
|
|
|
|
|
// print input boxes for filters
|
|
|
|
|
for ($k = 0; $k < sizeof ($desc_array); $k++) {
|
|
|
|
|
echo "<th>";
|
2003-07-01 19:49:57 +00:00
|
|
|
|
echo ("<input type=\"text\" name=\"filter" . strtolower ($attr_array[$k]) .
|
2003-05-27 19:30:41 +00:00
|
|
|
|
"\" value=\"" . $_POST["filter" . strtolower($attr_array[$k])] . "\">");
|
|
|
|
|
echo "</th>";
|
|
|
|
|
}
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
|
|
|
|
|
if ($user_count != 0) {
|
|
|
|
|
// print user list
|
2003-07-01 19:49:57 +00:00
|
|
|
|
$userinfo = array_slice ($userinfo, ($page - 1) * $max_pageentrys,
|
|
|
|
|
$max_pageentrys);
|
2003-05-27 19:30:41 +00:00
|
|
|
|
for ($i = 0; $i < sizeof ($userinfo); $i++) { // ignore last entry in array which is "count"
|
|
|
|
|
echo("<tr class=\"userlist\" onMouseOver=\"user_over(this, '" . $userinfo[$i]["dn"] . "')\"" .
|
|
|
|
|
" onMouseOut=\"user_out(this, '" . $userinfo[$i]["dn"] . "')\"" .
|
|
|
|
|
" onClick=\"user_click(this, '" . $userinfo[$i]["dn"] . "')\"" .
|
2003-06-30 20:04:59 +00:00
|
|
|
|
" onDblClick=\"parent.frames[1].location.href='../account.php?type=user&DN=" . $userinfo[$i]["dn"] . "'\">" .
|
2003-05-27 19:30:41 +00:00
|
|
|
|
" <td height=22><input onClick=\"user_click(this, '" . $userinfo[$i]["dn"] . "')\" type=\"checkbox\" name=\"" . $userinfo[$i]["dn"] . "\"></td>" .
|
2003-06-30 20:04:59 +00:00
|
|
|
|
" <td align='center'><a href=\"../account.php?type=user&DN='" . $userinfo[$i]["dn"] . "'\">" . _("Edit") . "</a></td>\n");
|
2003-05-27 19:30:41 +00:00
|
|
|
|
for ($k = 0; $k < sizeof($attr_array); $k++) {
|
|
|
|
|
echo ("<td>\n");
|
|
|
|
|
// print all attribute entries seperated by "; "
|
|
|
|
|
if (sizeof($userinfo[$i][strtolower($attr_array[$k])]) > 0) {
|
|
|
|
|
// delete first array entry which is "count"
|
2003-06-30 20:04:59 +00:00
|
|
|
|
if (is_array($userinfo[$i][strtolower($attr_array[$k])])) {
|
|
|
|
|
array_shift($userinfo[$i][strtolower($attr_array[$k])]);
|
|
|
|
|
echo implode("; ", $userinfo[$i][strtolower($attr_array[$k])]);
|
|
|
|
|
}
|
|
|
|
|
else echo $userinfo[$i][strtolower($attr_array[$k])];
|
2003-05-27 19:30:41 +00:00
|
|
|
|
}
|
2003-05-05 23:06:12 +00:00
|
|
|
|
}
|
2003-05-27 19:30:41 +00:00
|
|
|
|
echo ("</td>");
|
2003-05-05 23:06:12 +00:00
|
|
|
|
}
|
2003-05-27 19:30:41 +00:00
|
|
|
|
echo("</tr>\n");
|
2003-04-23 21:41:48 +00:00
|
|
|
|
}
|
|
|
|
|
echo ("</table>");
|
2003-05-05 23:06:12 +00:00
|
|
|
|
|
|
|
|
|
echo ("<br />");
|
2003-05-27 19:30:41 +00:00
|
|
|
|
if ($user_count != 0) {
|
|
|
|
|
draw_navigation_bar ($user_count);
|
|
|
|
|
echo ("<br />");
|
|
|
|
|
}
|
2003-05-07 21:51:18 +00:00
|
|
|
|
|
2003-06-30 20:04:59 +00:00
|
|
|
|
if (! $_GET['norefresh']) {
|
|
|
|
|
// generate list of possible suffixes
|
|
|
|
|
$usr_units = $_SESSION['ldap']->search_units($_SESSION["config"]->get_UserSuffix());
|
|
|
|
|
}
|
2003-05-05 23:06:12 +00:00
|
|
|
|
|
2003-06-30 20:04:59 +00:00
|
|
|
|
echo ("<p align=\"left\">\n");
|
|
|
|
|
echo ("<input type=\"submit\" name=\"new_user\" value=\"" . _("New User") . "\">\n");
|
|
|
|
|
if ($user_count != 0) echo ("<input type=\"submit\" name=\"del_user\" value=\"" . _("Delete User(s)") . "\">\n");
|
|
|
|
|
// print combobox with possible sub-DNs
|
|
|
|
|
if (sizeof($usr_units) > 1) {
|
|
|
|
|
echo (" <b>" . _("Suffix") . ": </b>");
|
|
|
|
|
echo ("<select size=1 name=\"usr_suffix\">\n");
|
|
|
|
|
for ($i = 0; $i < sizeof($usr_units); $i++) {
|
|
|
|
|
if ($usr_suffix == $usr_units[$i]) echo ("<option selected>" . $usr_units[$i] . "</option>\n");
|
|
|
|
|
else echo("<option>" . $usr_units[$i] . "</option>\n");
|
|
|
|
|
}
|
|
|
|
|
echo ("</select>\n");
|
|
|
|
|
echo ("<input type=\"submit\" name=\"refresh\" value=\"" . _("Change Suffix") . "\">");
|
2003-05-27 19:30:41 +00:00
|
|
|
|
}
|
2003-06-30 20:04:59 +00:00
|
|
|
|
|
|
|
|
|
echo ("</p>\n");
|
2003-04-23 21:41:48 +00:00
|
|
|
|
echo ("</form>\n");
|
|
|
|
|
echo "</body></html>\n";
|
|
|
|
|
|
2003-06-30 20:04:59 +00:00
|
|
|
|
/**
|
2003-05-07 21:51:18 +00:00
|
|
|
|
* @brief draws a navigation bar to switch between pages
|
|
|
|
|
*
|
2003-06-30 20:04:59 +00:00
|
|
|
|
*
|
2003-05-07 21:51:18 +00:00
|
|
|
|
* @return void
|
|
|
|
|
*/
|
|
|
|
|
function draw_navigation_bar ($user_count) {
|
|
|
|
|
global $max_pageentrys;
|
|
|
|
|
global $page;
|
2003-05-09 10:16:17 +00:00
|
|
|
|
global $sortattrib;
|
2003-05-21 22:51:05 +00:00
|
|
|
|
global $searchfilter;
|
2003-05-07 21:51:18 +00:00
|
|
|
|
|
2003-07-01 19:49:57 +00:00
|
|
|
|
echo ("<table class=\"userlist-navbar\" width=\"100%\" border=\"0\"\n");
|
2003-05-07 21:51:18 +00:00
|
|
|
|
echo ("<tr>");
|
2003-07-01 19:49:57 +00:00
|
|
|
|
echo ("<td class=\"userlist-navbar\"><input type=\"submit\" name=\"refresh\" value=\"" . _("Refresh") . "\"> ");
|
2003-05-07 21:51:18 +00:00
|
|
|
|
if ($page != 1)
|
2003-06-30 20:04:59 +00:00
|
|
|
|
echo ("<a class=\"userlist\" href=\"listusers.php?norefresh=1&page=" .
|
|
|
|
|
($page - 1) . "&sortattrib=" . $sortattrib .
|
2003-05-21 22:51:05 +00:00
|
|
|
|
$searchfilter . "\"><=</a>");
|
2003-05-07 21:51:18 +00:00
|
|
|
|
else
|
2003-05-21 17:15:17 +00:00
|
|
|
|
echo ("<=");
|
2003-05-07 21:51:18 +00:00
|
|
|
|
echo (" ");
|
|
|
|
|
|
|
|
|
|
if ($page < ($user_count / $max_pageentrys))
|
2003-06-30 20:04:59 +00:00
|
|
|
|
echo ("<a class=\"userlist\" href=\"listusers.php?norefresh=1&page=" .
|
|
|
|
|
($page + 1) . "&sortattrib=" . $sortattrib . $searchfilter . "\">=></a>");
|
2003-05-07 21:51:18 +00:00
|
|
|
|
else
|
2003-05-21 22:51:05 +00:00
|
|
|
|
echo ("=>");
|
|
|
|
|
echo ("</td>");
|
2003-07-01 19:49:57 +00:00
|
|
|
|
echo ("<td class=\"userlist-navbartext\">");
|
2003-07-02 16:39:59 +00:00
|
|
|
|
echo " " . $user_count . " " . _("User(s) found");
|
2003-05-21 22:51:05 +00:00
|
|
|
|
echo ("</td>");
|
|
|
|
|
|
2003-05-07 21:51:18 +00:00
|
|
|
|
|
2003-07-01 19:49:57 +00:00
|
|
|
|
echo ("<td class=\"userlist-activepage\" align=\"right\">");
|
2003-05-07 21:51:18 +00:00
|
|
|
|
for ($i = 0; $i < ($user_count / $max_pageentrys); $i++) {
|
|
|
|
|
if ($i == $page - 1)
|
|
|
|
|
echo (" " . ($i + 1));
|
|
|
|
|
else
|
2003-06-30 20:04:59 +00:00
|
|
|
|
echo (" <a class=\"userlist\" href=\"listusers.php?norefresh=1&page=" .
|
2003-05-21 17:15:17 +00:00
|
|
|
|
($i + 1) .
|
2003-06-30 20:04:59 +00:00
|
|
|
|
"&sortattrib=" . $sortattrib . $searchfilter .
|
2003-05-21 22:51:05 +00:00
|
|
|
|
"\">" . ($i + 1) . "</a>");
|
2003-05-07 21:51:18 +00:00
|
|
|
|
}
|
|
|
|
|
echo ("</td></tr></table>");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-04-23 21:41:48 +00:00
|
|
|
|
// compare function used for usort-method
|
|
|
|
|
// rows are sorted with the first attribute entry of the sort column
|
|
|
|
|
// if objects have attributes with multiple values the others are ignored
|
|
|
|
|
function cmp_array($a, $b) {
|
2003-05-09 10:16:17 +00:00
|
|
|
|
// sortattrib specifies the sort column
|
|
|
|
|
global $sortattrib;
|
2003-05-05 23:06:12 +00:00
|
|
|
|
global $attr_array;
|
2003-05-09 10:16:17 +00:00
|
|
|
|
// sort by first attribute with name $sortattrib
|
2003-06-30 20:04:59 +00:00
|
|
|
|
if (!$sortattrib) $sortattrib = strtolower($attr_array[0]);
|
|
|
|
|
if ($a[$sortattrib][0] == $b[$sortattrib][0]) return 0;
|
|
|
|
|
else if ($a[$sortattrib][0] == max($a[$sortattrib][0], $b[$sortattrib][0])) return 1;
|
|
|
|
|
else return -1;
|
2003-04-23 21:41:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
?>
|