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
|
2004-02-03 16:44:47 +00:00
|
|
|
|
Copyright (C) 2004 Roland Gruber
|
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
|
|
|
|
|
2004-06-01 13:00:09 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* This page displays a list of all users.
|
|
|
|
|
*
|
|
|
|
|
* @package lists
|
|
|
|
|
* @author Roland Gruber
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** Access to configuration options */
|
2003-04-23 21:41:48 +00:00
|
|
|
|
include_once ("../../lib/config.inc");
|
2004-06-01 13:00:09 +00:00
|
|
|
|
/** Access to LDAP connection */
|
|
|
|
|
include_once ("../../lib/ldap.inc");
|
|
|
|
|
/** Used to print status messages */
|
|
|
|
|
include_once ("../../lib/status.inc");
|
|
|
|
|
/** Used to create PDF files */
|
2003-08-23 09:22:13 +00:00
|
|
|
|
include_once("../../lib/pdf.inc");
|
2004-06-01 13:00:09 +00:00
|
|
|
|
/** Access to account modules */
|
2004-02-23 16:54:42 +00:00
|
|
|
|
include_once("../../lib/modules.inc");
|
2004-06-01 13:00:09 +00:00
|
|
|
|
/** Basic list functions */
|
2004-05-31 20:10:36 +00:00
|
|
|
|
include_once("../../lib/lists.inc");
|
2003-04-23 21:41:48 +00:00
|
|
|
|
|
2003-05-21 17:15:17 +00:00
|
|
|
|
|
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-08-16 11:18:39 +00:00
|
|
|
|
// check if primary group should be translated
|
|
|
|
|
if ($_POST['trans_primary'] == "on") $trans_primary = "on";
|
|
|
|
|
else $trans_primary = "off";
|
|
|
|
|
$trans_primary_hash = $_SESSION['trans_primary_hash'];
|
|
|
|
|
// generate hash table for group translation
|
|
|
|
|
if ($trans_primary == "on" && !$_GET["norefresh"]) {
|
|
|
|
|
$trans_primary_hash = array();
|
|
|
|
|
$suffix = $_SESSION['config']->get_groupSuffix();
|
|
|
|
|
$filter = "objectClass=posixGroup";
|
|
|
|
|
$attrs = array("cn", "gidNumber");
|
|
|
|
|
$sr = @ldap_search($_SESSION["ldap"]->server(), $suffix, $filter, $attrs);
|
|
|
|
|
if ($sr) {
|
|
|
|
|
$info = @ldap_get_entries($_SESSION["ldap"]->server(), $sr);
|
2004-06-01 11:32:00 +00:00
|
|
|
|
unset($info['count']); // delete count entry
|
2003-08-16 11:18:39 +00:00
|
|
|
|
for ($i = 0; $i < sizeof($info); $i++) {
|
|
|
|
|
$trans_primary_hash[$info[$i]['gidnumber'][0]] = $info[$i]['cn'][0];
|
|
|
|
|
}
|
|
|
|
|
$_SESSION['trans_primary_hash'] = $trans_primary_hash;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-06-30 20:04:59 +00:00
|
|
|
|
$usr_units = $_SESSION['usr_units'];
|
|
|
|
|
|
2003-08-23 09:22:13 +00:00
|
|
|
|
// check if button was pressed and if we have to add/delete a user or create a PDF
|
2003-09-12 13:37:30 +00:00
|
|
|
|
if ($_POST['new_user'] || $_POST['del_user'] || $_POST['pdf_user'] || $_POST['pdf_all']){
|
2003-08-23 09:22:13 +00:00
|
|
|
|
// add new user
|
|
|
|
|
if ($_POST['new_user']){
|
2004-02-10 20:08:47 +00:00
|
|
|
|
metaRefresh("../account/edit.php?type=user");
|
2004-02-03 16:44:47 +00:00
|
|
|
|
exit;
|
2003-08-23 09:22:13 +00:00
|
|
|
|
}
|
|
|
|
|
// delete user(s)
|
|
|
|
|
elseif ($_POST['del_user']){
|
|
|
|
|
// search for checkboxes
|
2003-11-08 16:07:40 +00:00
|
|
|
|
while ($entry = @array_pop($_POST)) {
|
|
|
|
|
if (eregi("^uid=.*$", $entry)) $users[] = $entry;
|
|
|
|
|
}
|
2003-10-01 20:44:40 +00:00
|
|
|
|
$_SESSION['delete_dn'] = $users;
|
2004-02-03 16:44:47 +00:00
|
|
|
|
if (sizeof($users) > 0) {
|
|
|
|
|
metaRefresh("../delete.php?type=user");
|
|
|
|
|
exit;
|
|
|
|
|
}
|
2003-08-23 09:22:13 +00:00
|
|
|
|
}
|
2003-09-12 13:37:30 +00:00
|
|
|
|
// PDF for selected users
|
2003-08-23 09:22:13 +00:00
|
|
|
|
elseif ($_POST['pdf_user']){
|
2004-06-03 14:26:48 +00:00
|
|
|
|
$pdf_structure = $_POST['pdf_structure'];
|
2003-08-23 09:22:13 +00:00
|
|
|
|
// search for checkboxes
|
2003-11-08 16:07:40 +00:00
|
|
|
|
while ($entry = @array_pop($_POST)) {
|
|
|
|
|
if (eregi("^uid=.*$", $entry)) $users[] = $entry;
|
|
|
|
|
}
|
2003-09-12 13:37:30 +00:00
|
|
|
|
$list = array();
|
2003-08-23 09:22:13 +00:00
|
|
|
|
// load users from LDAP
|
2003-08-29 11:51:57 +00:00
|
|
|
|
for ($i = 0; $i < sizeof($users); $i++) {
|
2004-05-26 19:48:14 +00:00
|
|
|
|
$_SESSION["accountPDF-$i"] = new accountContainer("user", "accountPDF-$i");
|
|
|
|
|
$_SESSION["accountPDF-$i"]->load_account($users[$i]);
|
|
|
|
|
$list[$i] = $_SESSION["accountPDF-$i"];
|
2003-08-29 11:51:57 +00:00
|
|
|
|
}
|
2003-11-08 16:07:40 +00:00
|
|
|
|
if (sizeof($list) > 0) {
|
2004-06-03 14:26:48 +00:00
|
|
|
|
createModulePDF($list,$pdf_structure);
|
2004-02-03 16:44:47 +00:00
|
|
|
|
exit;
|
2003-11-08 16:07:40 +00:00
|
|
|
|
}
|
2003-09-12 13:37:30 +00:00
|
|
|
|
}
|
|
|
|
|
// PDF for all users
|
|
|
|
|
elseif ($_POST['pdf_all']){
|
|
|
|
|
$list = array();
|
|
|
|
|
for ($i = 0; $i < sizeof($_SESSION['userlist']); $i++) {
|
2004-05-26 19:48:14 +00:00
|
|
|
|
$_SESSION["accountPDF-$i"] = new accountContainer("user", "accountPDF-$i");
|
|
|
|
|
$_SESSION["accountPDF-$i"]->load_account($_SESSION['usr_info'][$i]['dn']);
|
|
|
|
|
$list[$i] = $_SESSION["accountPDF-$i"];
|
2003-09-12 13:37:30 +00:00
|
|
|
|
}
|
2003-11-08 16:07:40 +00:00
|
|
|
|
if (sizeof($list) > 0) {
|
2004-06-03 14:26:48 +00:00
|
|
|
|
createModulePDF($list,$_POST['pdf_structure']);
|
2004-02-03 16:44:47 +00:00
|
|
|
|
exit;
|
2003-11-08 16:07:40 +00:00
|
|
|
|
}
|
2003-08-23 09:22:13 +00:00
|
|
|
|
}
|
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-11-29 12:54:00 +00:00
|
|
|
|
echo "<title>listusers</title>\n";
|
2003-04-23 21:41:48 +00:00
|
|
|
|
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";
|
|
|
|
|
|
2003-08-16 11:18:39 +00:00
|
|
|
|
$page = $_GET["page"];
|
|
|
|
|
if (!$page) $page = 1;
|
|
|
|
|
|
|
|
|
|
// take maximum count of user entries shown on one page out of session
|
|
|
|
|
if ($_SESSION["config"]->get_MaxListEntries() <= 0) {
|
2004-06-01 11:32:00 +00:00
|
|
|
|
$max_page_entries = 10; // default setting, if not yet set
|
2003-08-16 11:18:39 +00:00
|
|
|
|
}
|
2004-06-01 11:32:00 +00:00
|
|
|
|
else $max_page_entries = $_SESSION["config"]->get_MaxListEntries();
|
2003-08-16 11:18:39 +00:00
|
|
|
|
|
2003-04-23 21:41:48 +00:00
|
|
|
|
// generate attribute-description table
|
2003-08-09 10:56:46 +00:00
|
|
|
|
$attr_array = array(); // list of LDAP attributes to show
|
|
|
|
|
$desc_array = array(); // list of descriptions for the attributes
|
2003-04-23 21:41:48 +00:00
|
|
|
|
$attr_string = $_SESSION["config"]->get_userlistAttributes();
|
|
|
|
|
$temp_array = explode(";", $attr_string);
|
2004-06-01 13:00:09 +00:00
|
|
|
|
$hash_table = listGetAttributeUserArray();
|
2003-05-07 21:51:18 +00:00
|
|
|
|
|
2003-08-14 16:23:43 +00:00
|
|
|
|
// generate column attributes and descriptions
|
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) == "#") {
|
2003-08-14 16:23:43 +00:00
|
|
|
|
$attr = strtolower(substr($temp_array[$i],1));
|
2003-05-06 23:50:29 +00:00
|
|
|
|
$attr_array[$i] = $attr;
|
2003-10-06 15:59:49 +00:00
|
|
|
|
if ($hash_table[$attr]) $desc_array[] = strtoupper($hash_table[$attr]);
|
|
|
|
|
else $desc_array[] = strtoupper($attr);
|
2003-05-06 23:50:29 +00:00
|
|
|
|
}
|
|
|
|
|
// if not predefined, the attribute is seperated by a ":" from description
|
|
|
|
|
else {
|
|
|
|
|
$attr = explode(":", $temp_array[$i]);
|
|
|
|
|
$attr_array[$i] = $attr[0];
|
2003-10-06 15:59:49 +00:00
|
|
|
|
if ($attr[1]) $desc_array[$i] = strtoupper($attr[1]);
|
|
|
|
|
else $desc_array[$i] = strtoupper($attr[0]);
|
2003-05-06 23:50:29 +00:00
|
|
|
|
}
|
2003-04-23 21:41:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-01 11:32:00 +00:00
|
|
|
|
$sort = $_GET["sort"];
|
2004-05-31 20:10:36 +00:00
|
|
|
|
if (!$sort)
|
|
|
|
|
$sort = strtolower($attr_array[0]);
|
2003-05-09 10:16:17 +00:00
|
|
|
|
|
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
|
|
|
|
|
2003-05-09 10:16:17 +00:00
|
|
|
|
|
2003-05-21 22:51:05 +00:00
|
|
|
|
// generate search filter for sort links
|
2004-06-01 11:32:00 +00:00
|
|
|
|
$searchFilter = "";
|
2003-05-21 22:51:05 +00:00
|
|
|
|
for ($k = 0; $k < sizeof($desc_array); $k++) {
|
2003-10-01 15:16:37 +00:00
|
|
|
|
if (eregi("^([0-9a-z_\\*\\+\\-])+$", $_POST["filter" . strtolower($attr_array[$k])])) {
|
2004-06-01 11:32:00 +00:00
|
|
|
|
$searchFilter = $searchFilter . "&filter" .
|
2003-05-21 22:51:05 +00:00
|
|
|
|
strtolower($attr_array[$k]) . "=".
|
|
|
|
|
$_POST["filter" . strtolower($attr_array[$k])];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-02-23 16:54:42 +00:00
|
|
|
|
// configure search filter for LDAP
|
|
|
|
|
$module_filter = get_ldap_filter("user"); // basic filter is provided by modules
|
2004-06-04 11:26:24 +00:00
|
|
|
|
$filter = "(&" . $module_filter; // users do not end with "$"
|
2003-05-05 23:06:12 +00:00
|
|
|
|
for ($k = 0; $k < sizeof($desc_array); $k++) {
|
2003-10-01 15:16:37 +00:00
|
|
|
|
if (eregi("^([0-9a-z_\\*\\+\\-])+$", $_POST["filter" . strtolower($attr_array[$k])]))
|
2003-05-05 23:06:12 +00:00
|
|
|
|
$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"]) {
|
2004-05-31 20:10:36 +00:00
|
|
|
|
$_SESSION["userlist"] = listSort($sort, $attr_array, $_SESSION["userlist"]);
|
2003-08-09 10:56:46 +00:00
|
|
|
|
$userinfo = $_SESSION["userlist"];
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$attrs = $attr_array;
|
|
|
|
|
$sr = @ldap_search($_SESSION["ldap"]->server(), $usr_suffix, $filter, $attrs);
|
|
|
|
|
if (ldap_errno($_SESSION["ldap"]->server()) == 4) {
|
2004-02-25 19:41:56 +00:00
|
|
|
|
StatusMessage("WARN", _("LDAP sizelimit exceeded, not all entries are shown."), _("See README.openldap.txt to solve this problem."));
|
2003-08-09 10:56:46 +00:00
|
|
|
|
}
|
|
|
|
|
if ($sr) {
|
|
|
|
|
$userinfo = ldap_get_entries ($_SESSION["ldap"]->server, $sr);
|
|
|
|
|
ldap_free_result ($sr);
|
|
|
|
|
if ($userinfo["count"] == 0) StatusMessage("WARN", "", _("No Users found!"));
|
|
|
|
|
// delete first array entry which is "count"
|
2004-06-01 11:32:00 +00:00
|
|
|
|
unset($userinfo['count']);
|
2004-05-31 20:10:36 +00:00
|
|
|
|
$userinfo = listSort($sort, $attr_array, $userinfo);
|
2003-08-09 10:56:46 +00:00
|
|
|
|
$_SESSION["userlist"] = $userinfo;
|
|
|
|
|
}
|
|
|
|
|
else {
|
2003-09-23 15:35:48 +00:00
|
|
|
|
$_SESSION['userlist'] = array();
|
|
|
|
|
$userinfo = array();
|
2003-08-09 10:56:46 +00:00
|
|
|
|
StatusMessage("ERROR",
|
|
|
|
|
_("LDAP Search failed! Please check your preferences."),
|
|
|
|
|
_("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) {
|
2004-06-01 11:32:00 +00:00
|
|
|
|
// create navigation bar on top of user table
|
|
|
|
|
listDrawNavigationBar($user_count, $max_page_entries, $page, $sort,
|
|
|
|
|
$searchFilter . "&trans_primary=" . $trans_primary, "user", _("%s user(s) found"));
|
|
|
|
|
echo ("<br />");
|
2003-04-23 21:41:48 +00:00
|
|
|
|
}
|
2003-05-27 19:30:41 +00:00
|
|
|
|
|
2004-06-11 11:01:56 +00:00
|
|
|
|
// account table head
|
|
|
|
|
listPrintTableHeader("user", $searchFilter . "&trans_primary=" . $trans_primary, $desc_array, $attr_array, $_POST, $sort);
|
2003-05-27 19:30:41 +00:00
|
|
|
|
|
|
|
|
|
if ($user_count != 0) {
|
2003-09-25 07:01:20 +00:00
|
|
|
|
// translate GIDs and resort array if selected
|
|
|
|
|
if ($trans_primary == "on") {
|
|
|
|
|
// translate GIDs
|
|
|
|
|
for ($i = 0; $i < sizeof($userinfo); $i++) {
|
|
|
|
|
if ($trans_primary_hash[$userinfo[$i]['gidnumber'][0]]) {
|
|
|
|
|
$userinfo[$i]['gidnumber'][0] = $trans_primary_hash[$userinfo[$i]['gidnumber'][0]];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// resort if needed
|
2004-05-31 20:10:36 +00:00
|
|
|
|
if ($sort == "gidnumber") {
|
|
|
|
|
$userinfo = listSort($sort, $attr_array, $userinfo);
|
2003-09-25 07:01:20 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2003-08-14 17:19:10 +00:00
|
|
|
|
// print user list
|
2004-06-01 11:32:00 +00:00
|
|
|
|
$userinfo = array_slice ($userinfo, ($page - 1) * $max_page_entries, $max_page_entries);
|
2003-08-14 17:19:10 +00:00
|
|
|
|
for ($i = 0; $i < sizeof ($userinfo); $i++) { // ignore last entry in array which is "count"
|
|
|
|
|
echo("<tr class=\"userlist\"\nonMouseOver=\"user_over(this, '" . $userinfo[$i]["dn"] . "')\"\n" .
|
|
|
|
|
"onMouseOut=\"user_out(this, '" . $userinfo[$i]["dn"] . "')\"\n" .
|
|
|
|
|
"onClick=\"user_click(this, '" . $userinfo[$i]["dn"] . "')\"\n" .
|
2004-02-10 20:08:47 +00:00
|
|
|
|
"onDblClick=\"parent.frames[1].location.href='../account/edit.php?type=user&DN=" . $userinfo[$i]["dn"] . "'\">\n");
|
2003-11-08 16:07:40 +00:00
|
|
|
|
// checkboxes if selectall = "yes"
|
2003-09-28 10:45:14 +00:00
|
|
|
|
if ($_GET['selectall'] == "yes") {
|
2003-09-29 15:20:27 +00:00
|
|
|
|
echo "<td height=22 align=\"center\">\n<input onClick=\"user_click(this, '" . $userinfo[$i]["dn"] . "')\" type=\"checkbox\" name=\"" .
|
2003-11-08 16:07:40 +00:00
|
|
|
|
$userinfo[$i]["dn"] . "\" value=\"" . $userinfo[$i]["dn"] . "\" checked>\n</td>\n";
|
2003-09-28 10:45:14 +00:00
|
|
|
|
}
|
|
|
|
|
else {
|
2003-09-29 15:20:27 +00:00
|
|
|
|
echo "<td height=22 align=\"center\">\n<input onClick=\"user_click(this, '" . $userinfo[$i]["dn"] . "')\" type=\"checkbox\" name=\"" .
|
2003-11-08 16:07:40 +00:00
|
|
|
|
$userinfo[$i]["dn"] . "\" value=\"" . $userinfo[$i]["dn"] . "\">\n</td>\n";
|
2003-09-28 10:45:14 +00:00
|
|
|
|
}
|
2004-02-10 20:08:47 +00:00
|
|
|
|
echo ("<td align='center'>\n<a href=\"../account/edit.php?type=user&DN='" . $userinfo[$i]["dn"] . "'\">" .
|
2003-08-14 17:19:10 +00:00
|
|
|
|
_("Edit") . "</a>\n</td>\n");
|
|
|
|
|
for ($k = 0; $k < sizeof($attr_array); $k++) {
|
|
|
|
|
echo ("<td>\n");
|
2003-08-16 11:18:39 +00:00
|
|
|
|
// print attribute values
|
2003-08-14 17:19:10 +00:00
|
|
|
|
if (sizeof($userinfo[$i][strtolower($attr_array[$k])]) > 0) {
|
|
|
|
|
if (is_array($userinfo[$i][strtolower($attr_array[$k])])) {
|
2003-08-16 11:18:39 +00:00
|
|
|
|
// delete first array entry which is "count"
|
2004-06-01 11:32:00 +00:00
|
|
|
|
unset($userinfo[$i][strtolower($attr_array[$k])]['count']);
|
2003-09-15 15:37:07 +00:00
|
|
|
|
// sort array
|
|
|
|
|
sort($userinfo[$i][strtolower($attr_array[$k])]);
|
2003-08-16 11:18:39 +00:00
|
|
|
|
// print all attribute entries seperated by "; "
|
2004-10-01 12:13:16 +00:00
|
|
|
|
echo implode("; ", $userinfo[$i][strtolower($attr_array[$k])]) . "\n";
|
2003-08-14 17:19:10 +00:00
|
|
|
|
}
|
2004-10-01 12:13:16 +00:00
|
|
|
|
else echo $userinfo[$i][strtolower($attr_array[$k])] . "\n";
|
2003-08-14 17:19:10 +00:00
|
|
|
|
}
|
|
|
|
|
echo ("</td>\n");
|
|
|
|
|
}
|
|
|
|
|
echo("</tr>\n");
|
2003-06-30 20:04:59 +00:00
|
|
|
|
}
|
2003-09-28 10:45:14 +00:00
|
|
|
|
// display select all link
|
|
|
|
|
$colspan = sizeof($attr_array) + 1;
|
|
|
|
|
echo "<tr class=\"userlist\">\n";
|
2003-10-01 15:16:37 +00:00
|
|
|
|
echo "<td align=\"center\"><img src=\"../../graphics/select.png\" alt=\"select all\"></td>\n";
|
2004-06-01 11:32:00 +00:00
|
|
|
|
echo "<td colspan=$colspan> <a href=\"listusers.php?norefresh=1&page=" . $page . "&sort=" . $sort .
|
|
|
|
|
$searchFilter . "&trans_primary=" . $trans_primary . "&selectall=yes\">" .
|
2003-09-28 10:45:14 +00:00
|
|
|
|
"<font color=\"black\"><b>" . _("Select all") . "</b></font></a></td>\n";
|
|
|
|
|
echo "</tr>\n";
|
2003-04-23 21:41:48 +00:00
|
|
|
|
}
|
2003-08-14 17:19:10 +00:00
|
|
|
|
echo ("</table>\n");
|
2003-05-05 23:06:12 +00:00
|
|
|
|
|
2003-08-14 17:19:10 +00:00
|
|
|
|
echo ("<br>");
|
2003-05-27 19:30:41 +00:00
|
|
|
|
if ($user_count != 0) {
|
2004-06-01 11:32:00 +00:00
|
|
|
|
listDrawNavigationBar($user_count, $max_page_entries, $page, $sort,
|
|
|
|
|
$searchFilter . "&trans_primary=" . $trans_primary, "user", _("%s user(s) found"));
|
|
|
|
|
echo ("<br>");
|
2003-05-27 19:30:41 +00:00
|
|
|
|
}
|
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
|
|
|
|
// print combobox with possible sub-DNs
|
|
|
|
|
if (sizeof($usr_units) > 1) {
|
2003-08-16 11:18:39 +00:00
|
|
|
|
echo ("<p align=\"left\">\n");
|
|
|
|
|
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") . "\">");
|
|
|
|
|
echo ("</p>\n");
|
2003-06-30 20:04:59 +00:00
|
|
|
|
}
|
2003-08-16 11:18:39 +00:00
|
|
|
|
|
|
|
|
|
// show translate GID to group name box if there is a column with gidnumber
|
|
|
|
|
if (in_array("gidnumber", $attr_array)) {
|
|
|
|
|
echo "<p align=\"left\">\n";
|
|
|
|
|
echo "<b>" . _("Translate GID number to group name") . ": </b>";
|
|
|
|
|
if ($trans_primary == "on") {
|
|
|
|
|
echo "<input type=\"checkbox\" name=\"trans_primary\" checked>";
|
|
|
|
|
}
|
|
|
|
|
else echo "<input type=\"checkbox\" name=\"trans_primary\">";
|
|
|
|
|
echo (" <input type=\"submit\" name=\"apply\" value=\"" . _("Apply") . "\">");
|
|
|
|
|
echo "</p>\n";
|
2003-05-27 19:30:41 +00:00
|
|
|
|
}
|
2003-06-30 20:04:59 +00:00
|
|
|
|
|
2003-08-16 11:18:39 +00:00
|
|
|
|
echo ("<p> </p>\n");
|
|
|
|
|
|
2003-10-15 18:48:06 +00:00
|
|
|
|
// new/delete/PDF buttons
|
2003-08-23 09:22:13 +00:00
|
|
|
|
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");
|
2003-10-15 18:48:06 +00:00
|
|
|
|
echo ("<br><br><br>\n");
|
|
|
|
|
echo "<fieldset><legend><b>PDF</b></legend>\n";
|
2004-10-23 11:53:30 +00:00
|
|
|
|
echo ("<b>" . _('PDF structure') . ":</b> <select name=\"pdf_structure\">\n");
|
2004-06-03 14:26:48 +00:00
|
|
|
|
$pdf_structures = getAvailablePDFStructures('user');
|
|
|
|
|
foreach($pdf_structures as $pdf_structure) {
|
|
|
|
|
echo "<option value=\"" . $pdf_structure . "\"" . (($pdf_structure == 'default.xml') ? " selected" : "") . ">" . substr($pdf_structure,0,strlen($pdf_structure)-4) . "</option>";
|
|
|
|
|
}
|
2004-06-11 11:37:30 +00:00
|
|
|
|
echo "</select> \n";
|
2003-09-12 13:37:30 +00:00
|
|
|
|
echo ("<input type=\"submit\" name=\"pdf_user\" value=\"" . _("Create PDF for selected user(s)") . "\">\n");
|
2003-10-15 18:48:06 +00:00
|
|
|
|
echo " ";
|
2003-09-12 13:37:30 +00:00
|
|
|
|
echo ("<input type=\"submit\" name=\"pdf_all\" value=\"" . _("Create PDF for all users") . "\">\n");
|
2003-10-15 18:48:06 +00:00
|
|
|
|
echo "</fieldset>";
|
2003-08-23 09:22:13 +00:00
|
|
|
|
}
|
2003-08-16 11:18:39 +00:00
|
|
|
|
|
|
|
|
|
echo ("<p> </p>\n");
|
|
|
|
|
|
2003-04-23 21:41:48 +00:00
|
|
|
|
echo ("</form>\n");
|
|
|
|
|
echo "</body></html>\n";
|
|
|
|
|
|
2003-05-07 21:51:18 +00:00
|
|
|
|
|
2003-08-09 10:56:46 +00:00
|
|
|
|
// save variables to session
|
|
|
|
|
$_SESSION['usr_units'] = $usr_units;
|
|
|
|
|
$_SESSION['usr_suffix'] = $usr_suffix;
|
|
|
|
|
|
2003-04-23 21:41:48 +00:00
|
|
|
|
?>
|