2004-08-24 20:22:32 +00:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2007-12-09 10:45:04 +00:00
|
|
|
<html><head>
|
|
|
|
|
|
|
|
|
|
|
|
<meta content="text/html; charset=ISO-8859-15" http-equiv="content-type"><title>LAM - Account lists</title>
|
|
|
|
|
2008-01-01 13:06:51 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="style/layout.css">
|
|
|
|
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
|
|
|
|
</head><body>
|
2004-08-24 20:22:32 +00:00
|
|
|
<h1 style="text-align: center;">Account lists</h1>
|
|
|
|
<br>
|
2007-12-09 10:45:04 +00:00
|
|
|
<div style="text-align: center;"><img style="width: 496px; height: 177px;" alt="Account lists" src="images/lam_lists.png"><br>
|
2004-08-24 20:22:32 +00:00
|
|
|
</div>
|
|
|
|
<br>
|
|
|
|
<br>
|
2004-08-26 18:16:02 +00:00
|
|
|
<br>
|
|
|
|
The account lists are all built after the same schema. They provide a
|
|
|
|
list of found accounts which can be restricted by LDAP filters and the
|
|
|
|
LDAP OU (Organizational Unit).<br>
|
|
|
|
<br>
|
|
|
|
The list of LDAP attributes and thus table columns is taken from the
|
2007-12-09 10:45:04 +00:00
|
|
|
configuration profile (<span style="font-weight: bold; font-style: italic;">get_...listAttributes()</span>
|
2004-08-26 18:16:02 +00:00
|
|
|
in config.inc). Each account list has a separate list of attributes.<br>
|
|
|
|
Only these attributes are given the LDAP search as attribute parameter.<br>
|
|
|
|
There is also a predefined description list for the attributes in
|
|
|
|
lists.inc. The user may use other values by setting them in the
|
|
|
|
configuration profile.<br>
|
|
|
|
<br>
|
2007-12-09 10:45:04 +00:00
|
|
|
The number of accounts per page is limited by a list option. There will be links at the beginning and end of the
|
2004-08-26 18:16:02 +00:00
|
|
|
list if more accounts were found.<br>
|
|
|
|
<br>
|
|
|
|
Several common helper functions for sorting and some page elements
|
|
|
|
reside in lists.inc.<br>
|
|
|
|
<br>
|
|
|
|
<h2>1. Getting accounts from LDAP</h2>
|
|
|
|
Each account list has its own LDAP suffix which is saved in the
|
|
|
|
configuration profile. This is used as search base.<br>
|
2007-12-09 10:45:04 +00:00
|
|
|
The account modules provide an LDAP filter (<span style="font-weight: bold; font-style: italic;">get_ldap_filter()</span>
|
2004-08-26 18:16:02 +00:00
|
|
|
in modules.inc) to get only accounts of a special type.<br>
|
|
|
|
<br>
|
|
|
|
This list can be further reduced if the user provides an additional
|
|
|
|
LDAP filter with the filter boxes or selects another LDAP OU with the
|
|
|
|
drop-down-box.<br>
|
|
|
|
<br>
|
|
|
|
<h2>2. Caching LDAP accounts</h2>
|
|
|
|
The lists usually do not ask the LDAP server for an account list every
|
|
|
|
time the user changes the page. The accounts are cached in the session.<br>
|
|
|
|
<br>
|
|
|
|
A new LDAP search is done if the user:<br>
|
|
|
|
<ul>
|
|
|
|
<li>changes to another account list or tool</li>
|
|
|
|
<li>adds/modifies an account</li>
|
|
|
|
<li>selects the "refresh" button</li>
|
|
|
|
<li>adds additional LDAP filters or changes the LDAP OU<br>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
<br>
|
|
|
|
It is <span style="font-style: italic;">not</span> done if the user:<br>
|
|
|
|
<ul>
|
|
|
|
<li>changes the list pages if there are more accounts than what can
|
|
|
|
be shown</li>
|
|
|
|
<li>sorts the list</li>
|
|
|
|
</ul>
|
|
|
|
<br>
|
|
|
|
<h2>3. Adding/Editing accounts</h2>
|
|
|
|
There are buttons at the end of the page to add/delete accounts. Adding
|
|
|
|
accounts is done by account/edit.php and deleting by delete.php.<br>
|
|
|
|
<br>
|
|
|
|
The user can use the link in each account row to modify (in
|
|
|
|
accounts/edit.php) the account. This can also be done by double
|
|
|
|
clicking the row if Java Script is enabled.<br>
|
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
<h2>4. Export to PDF</h2>
|
2007-12-09 10:45:04 +00:00
|
|
|
The user can generate PDF files for the accounts. This is done by the <span style="font-style: italic; font-weight: bold;">createModulePDF()</span>
|
2004-08-26 18:16:02 +00:00
|
|
|
function from pdf.inc.<br>
|
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
<h2>5. Special abilities of some lists</h2>
|
|
|
|
<h3>5.1. The user list</h3>
|
|
|
|
If the attribute <span style="font-style: italic;">gidNumber</span> is
|
|
|
|
shown as table column then there will be an additional checkbox to
|
|
|
|
translate the GID to the group name.<br>
|
|
|
|
This checkbox is hidden if <span style="font-style: italic;">gidNumber</span>
|
|
|
|
is not part of the attribute list.<br>
|
|
|
|
<br>
|
|
|
|
<h3>5.2. The group list</h3>
|
|
|
|
If the attribute memberUID is shown as table column then all values of
|
|
|
|
this attribute are shown as links.<br>
|
|
|
|
These links redirect to userlink.php which tries to find the given user
|
|
|
|
and redirects to account/edit.php for account modifying.<br>
|
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
<br>
|
2007-12-09 10:45:04 +00:00
|
|
|
</body></html>
|