*** empty log message ***

This commit is contained in:
Roland Gruber 2008-01-06 18:15:35 +00:00
parent 4c93e01134
commit 7f5bc04e2f
296 changed files with 10006 additions and 3028 deletions

View File

@ -212,6 +212,44 @@ SourceForge</a></td>
<p> </p> <p> </p>
<table cellspacing="0" width="100%">
<tbody>
<tr>
<th colspan="2">2.2.0.RC1 (2008-01-06)</th>
</tr>
<tr>
<td>
<ul>
<li>account lists:</li>
<ul>
<li>allow to switch sorting</li>
<li>added separate configuration page and store settings in cookies</li>
<li>list size can now be set individually for each account type on the list configuration page</li>
<li>new PDF buttons</li>
</ul>
<li>use suffix from account list as default for new accounts (patch 1823583)</li>
<li>Security: passwords in configuration files are now saved as hash values</li>
<li>improved design</li>
<li>style fixes for Internet Explorer users</li>
<li>Unix:</li>
<ul>
<li>allow to set host passwords (RFE 1754069)</li>
<li>allow to generate random passwords for users</li>
</ul>
<li>Samba 3 groups: Samba part is now optional</li>
<li>Personal: add object classes person and organizationalPerson for new accounts (RFE 1830033)</li>
<li>new LDAP schema check on tests page</li>
<li>LAM Pro:</li>
<ul>
<li>added possibility for deskside support to reset passwords at account list page</li>
<li>access levels (read only, change passwords, write access) for server profiles</li>
</ul>
</td>
</tr>
</tbody>
</table>
<p> </p>
<table cellspacing="0" width="100%"> <table cellspacing="0" width="100%">
<tbody> <tbody>
<tr> <tr>

View File

@ -3,6 +3,7 @@
<head> <head>
<title>Developer FAQ</title> <title>Developer FAQ</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<div style="text-align: center;"> <div style="text-align: center;">
@ -26,13 +27,13 @@ How can I make LDAP operations, where is the user name and password?</span></big
<br> <br>
<span style="font-weight: bold;"><big>A:</big> </span>LAM <span style="font-weight: bold;"><big>A:</big> </span>LAM
automatically reconnects to the LDAP server on every page load. You can automatically reconnects to the LDAP server on every page load. You can
use <span style="font-weight: bold; color: rgb(204, 0, 0);">$_SESSION['ldap']-&gt;server</span> use <span style="font-weight: bold; color: rgb(204, 0, 0);">$_SESSION['ldap']-&gt;server()</span>
which is the LDAP server handle.<br> which is the LDAP server handle.<br>
Be sure to include ldap.inc before (automatically included for account Be sure to include ldap.inc before (automatically included for account
modules).<br> modules).<br>
<br> <br>
<span style="font-weight: bold;">Example:</span> ldap_search(<span <span style="font-weight: bold;">Example:</span> ldap_search(<span
style="font-weight: bold; color: rgb(204, 0, 0);">$_SESSION['ldap']-&gt;server</span><span style="font-weight: bold; color: rgb(204, 0, 0);">$_SESSION['ldap']-&gt;server()</span><span
style="color: rgb(204, 0, 0);"></span>, $suffix, $filter, $attributes)<br> style="color: rgb(204, 0, 0);"></span>, $suffix, $filter, $attributes)<br>
<br> <br>
<br> <br>

View File

@ -5,6 +5,7 @@
http-equiv="content-type"> http-equiv="content-type">
<title>Account modules</title> <title>Account modules</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<h1 style="text-align: center;">Account modules<br> <h1 style="text-align: center;">Account modules<br>

View File

@ -5,6 +5,7 @@
http-equiv="content-type"> http-equiv="content-type">
<title>Account modules (modules.inc)</title> <title>Account modules (modules.inc)</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<h1 style="text-align: center;">Account modules (modules.inc)<br> <h1 style="text-align: center;">Account modules (modules.inc)<br>

View File

@ -5,6 +5,7 @@
http-equiv="content-type"> http-equiv="content-type">
<title>Account pages</title> <title>Account pages</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<h1 style="text-align: center;">Account pages<br> <h1 style="text-align: center;">Account pages<br>

View File

@ -5,6 +5,7 @@
http-equiv="content-type"> http-equiv="content-type">
<title>Account types</title> <title>Account types</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<h1 style="text-align: center;">Account types<br> <h1 style="text-align: center;">Account types<br>

View File

@ -5,6 +5,7 @@
http-equiv="content-type"> http-equiv="content-type">
<title>Account types (types.inc)</title> <title>Account types (types.inc)</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<h1 style="text-align: center;">Account types (types.inc)<br> <h1 style="text-align: center;">Account types (types.inc)<br>

View File

@ -5,6 +5,7 @@
http-equiv="content-type"> http-equiv="content-type">
<title>Base module</title> <title>Base module</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<h1 style="text-align: center;">Base module<br> <h1 style="text-align: center;">Base module<br>

View File

@ -5,6 +5,7 @@
http-equiv="content-type"> http-equiv="content-type">
<title>Base type</title> <title>Base type</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<h1 style="text-align: center;">Base type<br> <h1 style="text-align: center;">Base type<br>

View File

@ -5,6 +5,7 @@
http-equiv="content-type"> http-equiv="content-type">
<title>config.inc</title> <title>config.inc</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<h1 style="text-align: center;">config.inc</h1> <h1 style="text-align: center;">config.inc</h1>

View File

@ -5,6 +5,7 @@
http-equiv="content-type"> http-equiv="content-type">
<title>Configuration profiles</title> <title>Configuration profiles</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<h1 style="text-align: center;">Configuration profiles</h1> <h1 style="text-align: center;">Configuration profiles</h1>

View File

@ -5,6 +5,7 @@
http-equiv="content-type"> http-equiv="content-type">
<title>LAM - Configuration pages</title> <title>LAM - Configuration pages</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<div style="text-align: center;"> <div style="text-align: center;">

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@ -2,6 +2,7 @@
<html><head><title>LAM development documentation</title> <html><head><title>LAM development documentation</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"></head> <link rel="stylesheet" type="text/css" href="style/layout.css"></head>
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
<body> <body>
<div style="text-align: center;"> <div style="text-align: center;">
@ -93,22 +94,33 @@ browser</a><br>
</table> </table>
<br> <br>
<br> <br>
<h2>Howtos</h2> <table width="100%">
<ul> <tr valign="top">
<li><a href="mod_index.htm">Writing account modules</a></li> <td width="25%">
<li><a href="type_index.htm">Defining other account types</a><br> <h2>Howtos</h2>
</li> <ul>
</ul> <li><a href="mod_index.htm">Writing account modules</a></li>
<li><a href="type_index.htm">Defining other account types</a><br>
</li>
</ul>
</td>
<td width="25%" align="center">
<h2><a href="FAQ.htm">FAQ</a></h2>
</td>
<td width="25%">
<h2>Specifications</h2>
<ul>
<li><a href="modules-specification.htm">Module specification</a></li>
<li><a href="types-specification.htm">Type specification<br>
</a></li>
</ul>
</td>
<td width="25%">
<h2><a href="upgrade.htm">Upgrade notes</a></h2>
</td>
</tr>
</table>
<br> <br>
<h2><a href="FAQ.htm">FAQ</a></h2>
<h2><br>
</h2>
<h2>Specifications</h2>
<ul>
<li><a href="modules-specification.htm">Module specification</a></li>
<li><a href="types-specification.htm">Type specification<br>
</a></li>
</ul>
<br> <br>
</div> </div>

View File

@ -5,6 +5,7 @@
http-equiv="content-type"> http-equiv="content-type">
<title>ldap.inc</title> <title>ldap.inc</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<h1 style="text-align: center;">ldap.inc</h1> <h1 style="text-align: center;">ldap.inc</h1>

View File

@ -1,17 +1,15 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html> <html><head>
<head>
<meta content="text/html; charset=ISO-8859-15"
http-equiv="content-type"> <meta content="text/html; charset=ISO-8859-15" http-equiv="content-type"><title>LAM - Account lists</title>
<title>LAM - Account lists</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
</head> <link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
<body> </head><body>
<h1 style="text-align: center;">Account lists</h1> <h1 style="text-align: center;">Account lists</h1>
<br> <br>
<div style="text-align: center;"><img <div style="text-align: center;"><img style="width: 496px; height: 177px;" alt="Account lists" src="images/lam_lists.png"><br>
style="width: 496px; height: 177px;" alt="Account lists"
src="images/lam_lists.png"><br>
</div> </div>
<br> <br>
<br> <br>
@ -21,17 +19,14 @@ list of found accounts which can be restricted by LDAP filters and the
LDAP OU (Organizational Unit).<br> LDAP OU (Organizational Unit).<br>
<br> <br>
The list of LDAP attributes and thus table columns is taken from the The list of LDAP attributes and thus table columns is taken from the
configuration profile (<span configuration profile (<span style="font-weight: bold; font-style: italic;">get_...listAttributes()</span>
style="font-weight: bold; font-style: italic;">get_...listAttributes()</span>
in config.inc). Each account list has a separate list of attributes.<br> 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> Only these attributes are given the LDAP search as attribute parameter.<br>
There is also a predefined description list for the attributes in There is also a predefined description list for the attributes in
lists.inc. The user may use other values by setting them in the lists.inc. The user may use other values by setting them in the
configuration profile.<br> configuration profile.<br>
<br> <br>
The number of accounts per page is limited in the configuration profile The number of accounts per page is limited by a list option. There will be links at the beginning and end of the
(<span style="font-weight: bold; font-style: italic;">get_MaxListEntries()</span>
in config.inc). There will be links at the beginning and end of the
list if more accounts were found.<br> list if more accounts were found.<br>
<br> <br>
Several common helper functions for sorting and some page elements Several common helper functions for sorting and some page elements
@ -40,8 +35,7 @@ reside in lists.inc.<br>
<h2>1. Getting accounts from LDAP</h2> <h2>1. Getting accounts from LDAP</h2>
Each account list has its own LDAP suffix which is saved in the Each account list has its own LDAP suffix which is saved in the
configuration profile. This is used as search base.<br> configuration profile. This is used as search base.<br>
The account modules provide an LDAP filter (<span The account modules provide an LDAP filter (<span style="font-weight: bold; font-style: italic;">get_ldap_filter()</span>
style="font-weight: bold; font-style: italic;">get_ldap_filter()</span>
in modules.inc) to get only accounts of a special type.<br> in modules.inc) to get only accounts of a special type.<br>
<br> <br>
This list can be further reduced if the user provides an additional This list can be further reduced if the user provides an additional
@ -78,8 +72,7 @@ clicking the row if Java Script is enabled.<br>
<br> <br>
<br> <br>
<h2>4. Export to PDF</h2> <h2>4. Export to PDF</h2>
The user can generate PDF files for the accounts. This is done by the <span The user can generate PDF files for the accounts. This is done by the <span style="font-style: italic; font-weight: bold;">createModulePDF()</span>
style="font-style: italic; font-weight: bold;">createModulePDF()</span>
function from pdf.inc.<br> function from pdf.inc.<br>
<br> <br>
<br> <br>
@ -99,5 +92,4 @@ and redirects to account/edit.php for account modifying.<br>
<br> <br>
<br> <br>
<br> <br>
</body> </body></html>
</html>

View File

@ -5,6 +5,7 @@
http-equiv="content-type"> http-equiv="content-type">
<title>Login</title> <title>Login</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<h1 style="text-align: center;">Login<br> <h1 style="text-align: center;">Login<br>

View File

@ -2,6 +2,7 @@
<html><head><title>Module HowTo - Account pages</title> <html><head><title>Module HowTo - Account pages</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"></head> <link rel="stylesheet" type="text/css" href="style/layout.css"></head>
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
<body> <body>
<div style="text-align: center;"> <div style="text-align: center;">
<h1>Module HowTo - Account pages<br> <h1>Module HowTo - Account pages<br>

View File

@ -3,6 +3,7 @@
<head> <head>
<title>Module HowTo - Basic concepts</title> <title>Module HowTo - Basic concepts</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<div style="text-align: center;"> <div style="text-align: center;">

View File

@ -1,7 +1,9 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><title>Module HowTo - Configuration options</title> <html><head><title>Module HowTo - Configuration options</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"></head> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head>
<body> <body>
<h1>Module HowTo - Configuration options<br> <h1>Module HowTo - Configuration options<br>

View File

@ -3,6 +3,7 @@
<head> <head>
<title>Module HowTo - Defining required extensions</title> <title>Module HowTo - Defining required extensions</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<div style="text-align: center;"> <div style="text-align: center;">

View File

@ -1,10 +1,10 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html> <html><head><title>Module HowTo - General module options</title>
<head>
<title>Module HowTo - General module options</title>
<link rel="stylesheet" type="text/css" href="style/layout.css">
</head> <link rel="stylesheet" type="text/css" href="style/layout.css"></head><body>
<body> <link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
<div style="text-align: center;"> <div style="text-align: center;">
<h1>Module HowTo - General module options<br> <h1>Module HowTo - General module options<br>
</h1> </h1>
@ -13,21 +13,18 @@
<div style="text-align: left;"><br> <div style="text-align: left;"><br>
<h2>1. Account types<br> <h2>1. Account types<br>
</h2> </h2>
LAM currently provides three account types: <span LAM currently provides three account types: <span style="font-weight: bold;">users, groups, hosts<br>
style="font-weight: bold;">users, groups, hosts<br>
</span>A module can manage one or more account types.<br> </span>A module can manage one or more account types.<br>
<br> <br>
The types are specified with <span style="font-weight: bold;">can_manage()</span> The types are specified with <span style="font-weight: bold;">can_manage()</span>
or <span style="font-weight: bold;">meta['account_types']</span>.<br> or <span style="font-weight: bold;">meta['account_types']</span>.<br>
<br> <br>
<span style="font-weight: bold; text-decoration: underline;">Example:</span><br <span style="font-weight: bold; text-decoration: underline;">Example:</span><br style="font-weight: bold; text-decoration: underline;">
style="font-weight: bold; text-decoration: underline;">
<br> <br>
Our <span style="font-style: italic;">ieee802Device</span> Our <span style="font-style: italic;">ieee802Device</span>
module will be used only for host accounts.<br> module will be used only for host accounts.<br>
<br> <br>
<table style="width: 100%; text-align: left;" class="mod-code" <table style="width: 100%; text-align: left;" class="mod-code" border="0" cellpadding="2" cellspacing="2">
border="0" cellpadding="2" cellspacing="2">
<tbody> <tbody>
<tr> <tr>
<td style="vertical-align: top;">&nbsp;&nbsp;&nbsp; /**<br> <td style="vertical-align: top;">&nbsp;&nbsp;&nbsp; /**<br>
@ -41,8 +38,7 @@ get_metaData() {<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $return = array();<br> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $return = array();<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; // manages host accounts<br> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; // manages host accounts<br>
<span style="color: rgb(255, 0, 0);">&nbsp;&nbsp;&nbsp; <span style="color: rgb(255, 0, 0);">&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; $return["account_types"] = array("host");</span><br &nbsp;&nbsp;&nbsp; $return["account_types"] = array("host");</span><br style="color: rgb(255, 0, 0);">
style="color: rgb(255, 0, 0);">
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; return $return;<br> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; return $return;<br>
&nbsp;&nbsp;&nbsp; }<br> &nbsp;&nbsp;&nbsp; }<br>
</td> </td>
@ -54,15 +50,13 @@ get_metaData() {<br>
<h2>2. Base modules<br> <h2>2. Base modules<br>
</h2> </h2>
In LDAP every entry needs exactly one <span style="font-style: italic;">structural In LDAP every entry needs exactly one <span style="font-style: italic;">structural
object class</span>. Therefore all modules which provide a <span object class</span>. Therefore all modules which provide a <span style="font-style: italic;">structural object class</span> are marked
style="font-style: italic;">structural object class</span> are marked
as <span style="font-weight: bold;">base module</span>.<br> as <span style="font-weight: bold;">base module</span>.<br>
<br> <br>
This is done with <span style="font-weight: bold;">is_base_module()</span> This is done with <span style="font-weight: bold;">is_base_module()</span>
or <span style="font-weight: bold;">meta['is_base']</span>.<br> or <span style="font-weight: bold;">meta['is_base']</span>.<br>
<br> <br>
<span style="font-weight: bold; text-decoration: underline;">Example:</span><br <span style="font-weight: bold; text-decoration: underline;">Example:</span><br style="font-weight: bold; text-decoration: underline;">
style="font-weight: bold; text-decoration: underline;">
<br> <br>
The <span style="font-style: italic;">inetOrgPerson</span> The <span style="font-style: italic;">inetOrgPerson</span>
module manages the structural object class "inetOrgPerson" and module manages the structural object class "inetOrgPerson" and
@ -70,8 +64,7 @@ therefore is a <span style="font-weight: bold;">base module</span>.<br>
If your module is not a base module you can skip the meta data for If your module is not a base module you can skip the meta data for
this, default is <span style="font-style: italic;">false</span>.<br> this, default is <span style="font-style: italic;">false</span>.<br>
<br> <br>
<table style="width: 100%; text-align: left;" class="mod-code" <table style="width: 100%; text-align: left;" class="mod-code" border="0" cellpadding="2" cellspacing="2">
border="0" cellpadding="2" cellspacing="2">
<tbody> <tbody>
<tr> <tr>
<td style="vertical-align: top;">&nbsp;&nbsp;&nbsp; /**<br> <td style="vertical-align: top;">&nbsp;&nbsp;&nbsp; /**<br>
@ -85,8 +78,7 @@ get_metaData() {<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $return = array();<br> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $return = array();<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; // base module<br> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; // base module<br>
<span style="color: rgb(255, 0, 0);">&nbsp;&nbsp;&nbsp; <span style="color: rgb(255, 0, 0);">&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; $return["is_base"] = true;</span><br &nbsp;&nbsp;&nbsp; $return["is_base"] = true;</span><br style="color: rgb(255, 0, 0);">
style="color: rgb(255, 0, 0);">
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; return $return;<br> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; return $return;<br>
&nbsp;&nbsp;&nbsp; }<br> &nbsp;&nbsp;&nbsp; }<br>
</td> </td>
@ -96,9 +88,7 @@ get_metaData() {<br>
<br> <br>
<br> <br>
<h2>3. Alias name</h2> <h2>3. Alias name</h2>
The module name is very limited, therefore every module has an <span The module name is very limited, therefore every module has an <span style="font-style: italic;">alias name</span>. This <span style="font-style: italic;">alias name</span> has no limitations and
style="font-style: italic;">alias name</span>. This <span
style="font-style: italic;">alias name</span> has no limitations and
can be translated. It may contain special characters but make sure that can be translated. It may contain special characters but make sure that
it does not contain HTML special characters like "&lt;".<br> it does not contain HTML special characters like "&lt;".<br>
The <span style="font-style: italic;">alias name </span>can be the The <span style="font-style: italic;">alias name </span>can be the
@ -109,14 +99,12 @@ The <span style="font-style: italic;">alias name</span> is specified
with <span style="font-weight: bold;">get_alias()</span> with <span style="font-weight: bold;">get_alias()</span>
or <span style="font-weight: bold;">meta['alias']</span>.<br> or <span style="font-weight: bold;">meta['alias']</span>.<br>
<br> <br>
<span style="font-weight: bold; text-decoration: underline;">Example:</span><br <span style="font-weight: bold; text-decoration: underline;">Example:</span><br style="font-weight: bold; text-decoration: underline;">
style="font-weight: bold; text-decoration: underline;">
<br> <br>
Our <span style="font-style: italic;">ieee802Device</span> Our <span style="font-style: italic;">ieee802Device</span>
module will get the alias MAC address.<br> module will get the alias MAC address.<br>
<br> <br>
<table style="width: 100%; text-align: left;" class="mod-code" <table style="width: 100%; text-align: left;" class="mod-code" border="0" cellpadding="2" cellspacing="2">
border="0" cellpadding="2" cellspacing="2">
<tbody> <tbody>
<tr> <tr>
<td style="vertical-align: top;">&nbsp;&nbsp;&nbsp; /**<br> <td style="vertical-align: top;">&nbsp;&nbsp;&nbsp; /**<br>
@ -130,8 +118,7 @@ get_metaData() {<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $return = array();<br> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $return = array();<br>
&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; // alias name<br> &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; // alias name<br>
<span style="color: rgb(255, 0, 0);">&nbsp;&nbsp;&nbsp; <span style="color: rgb(255, 0, 0);">&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp; &nbsp;$return["alias"] = _("MAC address");</span><br &nbsp;&nbsp; &nbsp;$return["alias"] = _("MAC address");</span><br style="color: rgb(255, 0, 0);">
style="color: rgb(255, 0, 0);">
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; return $return;<br> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; return $return;<br>
&nbsp;&nbsp;&nbsp; }<br> &nbsp;&nbsp;&nbsp; }<br>
</td> </td>
@ -148,15 +135,13 @@ module are not structural.<br>
The dependencies are specified with <span style="font-weight: bold;">get_dependencies()</span> The dependencies are specified with <span style="font-weight: bold;">get_dependencies()</span>
or <span style="font-weight: bold;">meta['dependencies']</span>.<br> or <span style="font-weight: bold;">meta['dependencies']</span>.<br>
<br> <br>
<span style="font-weight: bold; text-decoration: underline;">Example:</span><br <span style="font-weight: bold; text-decoration: underline;">Example:</span><br style="font-weight: bold; text-decoration: underline;">
style="font-weight: bold; text-decoration: underline;">
<br> <br>
Our <span style="font-style: italic;">ieee802Device</span> Our <span style="font-style: italic;">ieee802Device</span>
module depends on the account module (because it is the only structural module depends on the account module (because it is the only structural
module at this time).<br> module at this time).<br>
<br> <br>
<table style="width: 100%; text-align: left;" class="mod-code" <table style="width: 100%; text-align: left;" class="mod-code" border="0" cellpadding="2" cellspacing="2">
border="0" cellpadding="2" cellspacing="2">
<tbody> <tbody>
<tr> <tr>
<td style="vertical-align: top;">&nbsp;&nbsp;&nbsp; /**<br> <td style="vertical-align: top;">&nbsp;&nbsp;&nbsp; /**<br>
@ -171,8 +156,7 @@ get_metaData() {<br>
&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; // module dependencies<br> &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; // module dependencies<br>
<span style="color: rgb(255, 0, 0);">&nbsp;&nbsp;&nbsp; <span style="color: rgb(255, 0, 0);">&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp; &nbsp;$return['dependencies'] = array('depends' =&gt; &nbsp;&nbsp; &nbsp;$return['dependencies'] = array('depends' =&gt;
array('account'), 'conflicts' =&gt; array());</span><br array('account'), 'conflicts' =&gt; array());</span><br style="color: rgb(255, 0, 0);">
style="color: rgb(255, 0, 0);">
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; return $return;<br> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; return $return;<br>
&nbsp;&nbsp;&nbsp; }<br> &nbsp;&nbsp;&nbsp; }<br>
</td> </td>
@ -185,29 +169,25 @@ array('account'), 'conflicts' =&gt; array());</span><br
There are many situations where you will display messages to the user. There are many situations where you will display messages to the user.
The modules should define such messages at a common place to make it The modules should define such messages at a common place to make it
easier to modify them without searching the complete file.<br> easier to modify them without searching the complete file.<br>
The <span style="font-style: italic;">baseModule</span> offers the $<span The <span style="font-style: italic;">baseModule</span> offers the $<span style="font-weight: bold;">messages</span> variable for this. It
style="font-weight: bold;">messages</span> variable for this. It
should be filled by a function called <span style="font-weight: bold;">load_Messages()</span>.<br> should be filled by a function called <span style="font-weight: bold;">load_Messages()</span>.<br>
The <span style="font-style: italic;">baseModule</span> will The <span style="font-style: italic;">baseModule</span> will
automatically check if you have implemented this function and call it automatically check if you have implemented this function and call it
at construction time.<br> at construction time.<br>
<br> <br>
<span style="font-weight: bold; text-decoration: underline;">Example:</span><br <span style="font-weight: bold; text-decoration: underline;">Example:</span><br style="font-weight: bold; text-decoration: underline;">
style="font-weight: bold; text-decoration: underline;">
<br> <br>
Now let our <span style="font-style: italic;">ieee802Device</span> Now let our <span style="font-style: italic;">ieee802Device</span>
module define a message.<br> module define a message.<br>
<br> <br>
<table style="width: 100%; text-align: left;" class="mod-code" <table style="width: 100%; text-align: left;" class="mod-code" border="0" cellpadding="2" cellspacing="2">
border="0" cellpadding="2" cellspacing="2">
<tbody> <tbody>
<tr> <tr>
<td style="vertical-align: top;">&nbsp;&nbsp;&nbsp; /**<br> <td style="vertical-align: top;">&nbsp;&nbsp;&nbsp; /**<br>
&nbsp;&nbsp;&nbsp; * This function fills the error message array with &nbsp;&nbsp;&nbsp; * This function fills the error message array with
messages<br> messages<br>
&nbsp;&nbsp;&nbsp; */<br> &nbsp;&nbsp;&nbsp; */<br>
&nbsp;&nbsp;&nbsp; <span style="font-weight: bold;">function</span> <span &nbsp;&nbsp;&nbsp; <span style="font-weight: bold;">function</span> <span style="color: rgb(255, 0, 0);">load_Messages</span>() {<br>
style="color: rgb(255, 0, 0);">load_Messages</span>() {<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $this-&gt;messages['mac'][0] = &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $this-&gt;messages['mac'][0] =
array('ERROR', 'MAC address is invalid!');&nbsp; // third array value array('ERROR', 'MAC address is invalid!');&nbsp; // third array value
is set dynamically<br> is set dynamically<br>
@ -231,8 +211,7 @@ smbldap-tools) also create accounts and the spelling is differnt.<br>
The <span style="font-style: italic;">ieee802Device</span> module The <span style="font-style: italic;">ieee802Device</span> module
manages one object class.<br> manages one object class.<br>
<br> <br>
<table style="width: 100%; text-align: left;" class="mod-code" <table style="width: 100%; text-align: left;" class="mod-code" border="0" cellpadding="2" cellspacing="2">
border="0" cellpadding="2" cellspacing="2">
<tbody> <tbody>
<tr> <tr>
<td style="vertical-align: top;">&nbsp;&nbsp;&nbsp; /**<br> <td style="vertical-align: top;">&nbsp;&nbsp;&nbsp; /**<br>
@ -271,8 +250,7 @@ the "cn" attribute. This attribute is also known under the alias
This way the module will never see attributes called "commonName" This way the module will never see attributes called "commonName"
because LAM renames them as soon as the LDAP entry is loaded.<br> because LAM renames them as soon as the LDAP entry is loaded.<br>
<br> <br>
<table style="width: 100%; text-align: left;" class="mod-code" <table style="width: 100%; text-align: left;" class="mod-code" border="0" cellpadding="2" cellspacing="2">
border="0" cellpadding="2" cellspacing="2">
<tbody> <tbody>
<tr> <tr>
<td style="vertical-align: top;">&nbsp;&nbsp;&nbsp; /**<br> <td style="vertical-align: top;">&nbsp;&nbsp;&nbsp; /**<br>
@ -300,5 +278,50 @@ get_metaData() {<br>
<h2><span style="font-weight: bold;"></span></h2> <h2><span style="font-weight: bold;"></span></h2>
</div> </div>
</div> </div>
</body> <h2>8. Icon<br>
</html> </h2>
You can specify a icon for you module. It will be displayed on the
account pages and other module specific places (e.g. file upload).<br>
The icons must be 32x32 pixels in size. The location is relative to the <span style="font-style: italic;">graphics</span> directory.<br>
<br>
<span style="font-weight: bold; text-decoration: underline;">Example:</span><br>
<br>
The <span style="font-style: italic;">posixGroup</span> module uses the "tux.png" from the graphics directory.<br>
<br>
<table style="width: 100%; text-align: left;" class="mod-code" border="0" cellpadding="2" cellspacing="2">
<tbody>
<tr>
<td style="vertical-align: top;">&nbsp;&nbsp;&nbsp; /**<br>
&nbsp;&nbsp;&nbsp; * Returns meta data that is interpreted by parent
class<br>
&nbsp;&nbsp;&nbsp; *<br>
&nbsp;&nbsp;&nbsp; * @return array array with meta data<br>
&nbsp;&nbsp;&nbsp; */<br>
&nbsp;&nbsp;&nbsp; <span style="font-weight: bold;">function</span>
get_metaData() {<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $return = array();<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; // icon<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <span style="color: rgb(255, 0, 0);">$return['icon'] = 'tux.png';</span><br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; return $return;<br>
&nbsp;&nbsp;&nbsp; }<br>
</td>
</tr>
</tbody>
</table>
<br>
<br>
<span style="font-weight: bold;"></span>
<h2><span style="font-weight: bold;"></span></h2>
</body></html>

View File

@ -3,6 +3,7 @@
<head> <head>
<title>Module HowTo - Help entries</title> <title>Module HowTo - Help entries</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<div style="text-align: center;"> <div style="text-align: center;">

View File

@ -3,6 +3,7 @@
<head> <head>
<title>LAM module HowTo</title> <title>LAM module HowTo</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<div style="text-align: center;"> <div style="text-align: center;">

View File

@ -3,6 +3,7 @@
<head> <head>
<title>Module HowTo - PDF output</title> <title>Module HowTo - PDF output</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<div style="text-align: center;"> <div style="text-align: center;">

View File

@ -2,6 +2,7 @@
<html><head><title>Module HowTo - Account profiles</title> <html><head><title>Module HowTo - Account profiles</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"></head> <link rel="stylesheet" type="text/css" href="style/layout.css"></head>
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
<body> <body>
<div style="text-align: center;"> <div style="text-align: center;">

View File

@ -3,6 +3,7 @@
<head> <head>
<title>Module HowTo - Defining the RDN</title> <title>Module HowTo - Defining the RDN</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<div style="text-align: center;"> <div style="text-align: center;">

View File

@ -3,6 +3,7 @@
<head> <head>
<title>Module HowTo - File upload</title> <title>Module HowTo - File upload</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<div style="text-align: center;"> <div style="text-align: center;">

View File

@ -3,6 +3,7 @@
<head> <head>
<title>Module HowTo - Advanced upload options</title> <title>Module HowTo - Advanced upload options</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<div style="text-align: center;"> <div style="text-align: center;">

View File

@ -5,19 +5,21 @@
<style> <style>
<!-- <!--
h2 { h2 {
color:darkblue; color:#000080;
} }
h3 { h3 {
color:darkblue; color:#000080;
} }
h4 { h4 {
color:darkblue; color:#000080;
} }
table { table {
background-color:#bdcaff; background-color:#bdcaff;
} }
--> -->
</style></head> </style>
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head>
<body> <body>
<h1 style="text-align: center;">This document describes the module <h1 style="text-align: center;">This document describes the module
interface for LDAP Account Manager</h1> interface for LDAP Account Manager</h1>

View File

@ -5,6 +5,7 @@
http-equiv="content-type"> http-equiv="content-type">
<title>Other libraries</title> <title>Other libraries</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<h1 style="text-align: center;">Other libraries<br> <h1 style="text-align: center;">Other libraries<br>

View File

@ -5,6 +5,7 @@
http-equiv="content-type"> http-equiv="content-type">
<title>OU editor</title> <title>OU editor</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<h1 style="text-align: center;">OU editor<br> <h1 style="text-align: center;">OU editor<br>

View File

@ -5,6 +5,7 @@
http-equiv="content-type"> http-equiv="content-type">
<title>PDF editor</title> <title>PDF editor</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<h1 style="text-align: center;">PDF editor<br> <h1 style="text-align: center;">PDF editor<br>

View File

@ -5,6 +5,7 @@
http-equiv="content-type"> http-equiv="content-type">
<title>PDF (pdf.inc, pdfstruct.inc)</title> <title>PDF (pdf.inc, pdfstruct.inc)</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<h1 style="text-align: center;">PDF (pdf.inc, pdfstruct.inc)<br> <h1 style="text-align: center;">PDF (pdf.inc, pdfstruct.inc)<br>

View File

@ -5,6 +5,7 @@
http-equiv="content-type"> http-equiv="content-type">
<title>PDF templates</title> <title>PDF templates</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<h1 style="text-align: center;">PDF templates<br> <h1 style="text-align: center;">PDF templates<br>

View File

@ -5,6 +5,7 @@
http-equiv="content-type"> http-equiv="content-type">
<title>Profile editor</title> <title>Profile editor</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<h1 style="text-align: center;">Profile editor<br> <h1 style="text-align: center;">Profile editor<br>

View File

@ -5,6 +5,7 @@
http-equiv="content-type"> http-equiv="content-type">
<title>Account profiles</title> <title>Account profiles</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<h1 style="text-align: center;">Account profiles</h1> <h1 style="text-align: center;">Account profiles</h1>

View File

@ -5,6 +5,7 @@
http-equiv="content-type"> http-equiv="content-type">
<title>Account profiles</title> <title>Account profiles</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<h1 style="text-align: center;">profiles.inc</h1> <h1 style="text-align: center;">profiles.inc</h1>

View File

@ -5,6 +5,7 @@
http-equiv="content-type"> http-equiv="content-type">
<title>Samba 3 domains</title> <title>Samba 3 domains</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<h1 style="text-align: center;">Samba 3 domains<br> <h1 style="text-align: center;">Samba 3 domains<br>

View File

@ -5,6 +5,7 @@
http-equiv="content-type"> http-equiv="content-type">
<title>Tree view and schema browser</title> <title>Tree view and schema browser</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<h1 style="text-align: center;">Tree view and schema browser<br> <h1 style="text-align: center;">Tree view and schema browser<br>

View File

@ -3,6 +3,7 @@
<head> <head>
<title>Type HowTo - Basic concepts</title> <title>Type HowTo - Basic concepts</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<div style="text-align: center;"> <div style="text-align: center;">

View File

@ -3,6 +3,7 @@
<head> <head>
<title>Type HowTo - CSS file</title> <title>Type HowTo - CSS file</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<div style="text-align: center;"> <div style="text-align: center;">

View File

@ -3,6 +3,7 @@
<head> <head>
<title>Type HowTo - General type options</title> <title>Type HowTo - General type options</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<div style="text-align: center;"> <div style="text-align: center;">

View File

@ -3,6 +3,7 @@
<head> <head>
<title>Type HowTo - Icon</title> <title>Type HowTo - Icon</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<div style="text-align: center;"> <div style="text-align: center;">

View File

@ -3,6 +3,7 @@
<head> <head>
<title>LAM type HowTo</title> <title>LAM type HowTo</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<div style="text-align: center;"> <div style="text-align: center;">

View File

@ -3,6 +3,7 @@
<head> <head>
<title>Type HowTo - Custom list view</title> <title>Type HowTo - Custom list view</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<div style="text-align: center;"> <div style="text-align: center;">

View File

@ -3,6 +3,7 @@
<head> <head>
<title>Type HowTo - Default profile</title> <title>Type HowTo - Default profile</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<div style="text-align: center;"> <div style="text-align: center;">

View File

@ -7,19 +7,20 @@
<style> <style>
<!-- <!--
h2 { h2 {
color:darkblue; color:#000080;
} }
h3 { h3 {
color:darkblue; color:#000080;
} }
h4 { h4 {
color:darkblue; color:#000080;
} }
table { table {
background-color:#bdcaff; background-color:#bdcaff;
} }
--> -->
</style> </style>
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<h1 style="text-align: center;">This document describes the type <h1 style="text-align: center;">This document describes the type

View File

@ -0,0 +1,179 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><title>Upgrade notes</title>
<link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head><body>
<div style="text-align: center;">
<h1>Upgrade notes</h1></div>
<h2>2.1.0 -&gt; 2.2.0</h2>
<h3>Account lists</h3>
Account lists now support to define tools. These are displayed as linked images like the edit and delete links in the list.<br>
Overwrite <span style="font-weight: bold;">lamList::getAdditionalTools()</span> to use this feature.<br>
<br>
The definition of account list options changed. The function <span style="font-weight: bold;">lamList::getAdditionalTools()</span> is no longer available. Use these functions instead: <span style="font-weight: bold;">lamList::listGetAllConfigOptions()</span> and <span style="font-weight: bold;">lamList::listConfigurationChanged()</span>.<br>
All options are now saved in cookies for one year.<br>
<br>
<h3>Base module</h3>
The <span style="font-weight: bold;">baseModule</span> class has a new protected option: <span style="font-weight: bold;">$autoAddObjectClasses </span>You can set it to false if you do not want that your module's object classes are added when creating or loading an account.<br>
<br>
Account modules can now have icons. See <span style="font-weight: bold;">baseModule-&gt;getIcon()</span>.<br>
<br>
<h3>Constructors</h3>
LAM now uses the PHP5 syntax for constructors: <span style="font-weight: bold;">__construct()<br>
<br>
</span>
<h3>Extended security model</h3>
Each server profile now defines an access level.<br>
<br>
Currently these are:<br>
<ul>
<li>write access</li>
<li>password changes</li>
<li>read access<br>
</li>
</ul>
<span style="font-weight: bold;"></span> Please check your code and prohibit any actions which do not fit the current access level.<br>
There are two new functions in <span style="font-style: italic;">security.inc</span>: <span style="font-weight: bold;">checkIfWriteAccessIsAllowed()</span> and <span style="font-weight: bold;">checkIfPasswordChangeIsAllowed()</span><br>
Only LAM Pro allows to change the access level from <span style="font-style: italic;">write access</span> to a smaller level.<br>
<br>
<br>
<h2>2.0.0 -&gt; 2.1.0</h2>
<span style="font-weight: bold;">Style changes:</span><br>
<ul>
<li>"fieldset.&lt;type&gt;edit fieldset" and "fieldset.&lt;type&gt;edit fieldset fieldset" were removed.</li>
<li>"table.&lt;type&gt;list input" changed to "table.&lt;type&gt;list input,select"</li>
</ul>
<span style="font-weight: bold;">baseModule:</span><br>
&nbsp; The class variable<span style="font-style: italic;"> $base</span> is no longer visible in child classes. Please use <span style="font-style: italic;">$this-&gt;getAccountContainer()</span> to access the accountContainer object.<br>
<br>
Several other class variables in accountContainer etc. are now private. Use the new access methods.<br>
<br>
<br>
<h2>1.3.0 -&gt; 2.0.0</h2>
LAM is now PHP5 only. Several variables are now private and need to be accessed via functions.<br>
<br>
<br>
<h2>1.2.0 -&gt; 1.3.0</h2>
<span style="font-weight: bold;">New lamList function:</span><br>
<ul>
<li><span style="font-weight: bold;">listPrintTableCellContent():</span>
This function allows you to control how the LDAP attributes are
displayed in the table. This can be used to display links or binary
data.</li>
<li><span style="font-weight: bold;">listPrintAdditionalOptions():</span>
If you want to display additional conrols for a list please use this
function. The controls will be placed under the account table.<br>
</li>
</ul>
No more lamdaemon commands via delete_attributes() and save_attributes() in account modules.<br>
Please use these new functions to call lamdaemon directly:<br>
<ul>
<li>preModifyActions()</li>
<li>postModifyActions()</li>
<li>preDeleteActions()</li>
<li>postDeleteActions()</li>
</ul>
<br>
<h2>1.1.x -&gt; 1.2.0</h2>
<span style="font-weight: bold;">API changes:</span><br>
<ul>
<li>removed get_configDescription() from module interface</li>
</ul>
<br>
<h2>1.0.4 -&gt; 1.1.0</h2>
<span style="font-weight: bold;">API changes:</span><br>
<ul>
<li>removed $post parameters from module functions (delete_attributes(), process_...(), display_html_...()). Use $_POST instead.</li>
<li>process_...()
functions: returned messages are no longer grouped (e.g. return:
array(array('INFO', 'headline', 'text'), array('INFO', 'headline2',
'text2')))</li>
</ul>
<br>
<h2>1.0.0 -&gt; 1.0.2</h2>
<span style="font-weight: bold;">New module functions:</span><br>
<ul>
<li>getRequiredExtensions: Allows to define required PHP extensions</li>
<li>getManagedObjectClasses: Definition of managed object classes for this module</li>
<li>getLDAPAliases: list of LDAP alias names which are replaced by LAM</li>
<li>getManagedAttributes: list of LDAP attributes which are managed by this module</li>
</ul>
The LDAP attributes are no longer loaded by reading the LDAP schema. If
your module does not implement the load_attributes() function then you
have to use getManagedAttributes() or the meta data to specify them.<br>
<br>
The class variable "triggered_messages" in baseModule was removed.<br>
<br>
</body></html>

View File

@ -5,6 +5,7 @@
http-equiv="content-type"> http-equiv="content-type">
<title>File upload</title> <title>File upload</title>
<link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head> </head>
<body> <body>
<h1 style="text-align: center;">File upload<br> <h1 style="text-align: center;">File upload<br>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
<p><a href="../ric_README.html">README</a></p> <p><a href="../ric_README.html">README</a></p>
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="../li_configuration.html">configuration</a><br /> <a href="../li_configuration.html">configuration</a><br />
@ -82,7 +82,7 @@ LDAP Account Manager help entries.<br /><br /><br /><br />
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:49 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:59:06 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
<p><a href="../ric_README.html">README</a></p> <p><a href="../ric_README.html">README</a></p>
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="../li_configuration.html">configuration</a><br /> <a href="../li_configuration.html">configuration</a><br />
@ -148,7 +148,7 @@ array $helpEntry, array $helpVariables)</code>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:49 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:59:06 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
<p><a href="../ric_README.html">README</a></p> <p><a href="../ric_README.html">README</a></p>
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="../li_configuration.html">configuration</a><br /> <a href="../li_configuration.html">configuration</a><br />
@ -80,18 +80,12 @@ Source Location: /lib/ldap.inc<br /><br />
</td> </td>
<td valign="top">
<h3><a href="#class_vars">Variables</a></h3>
<ul>
<li><a href="../LDAP/Ldap.html#var$supports_unix_hosts">$supports_unix_hosts</a></li>
</ul>
</td>
<td valign="top"> <td valign="top">
<h3><a href="#class_methods">Methods</a></h3> <h3><a href="#class_methods">Methods</a></h3>
<ul> <ul>
<li><a href="../LDAP/Ldap.html#methodLdap">Ldap</a></li> <li><a href="../LDAP/Ldap.html#method__construct">__construct</a></li>
<li><a href="../LDAP/Ldap.html#methodclose">close</a></li> <li><a href="../LDAP/Ldap.html#methodclose">close</a></li>
<li><a href="../LDAP/Ldap.html#methodcmp_array">cmp_array</a></li> <li><a href="../LDAP/Ldap.html#methodcmp_array">cmp_array</a></li>
<li><a href="../LDAP/Ldap.html#methodconnect">connect</a></li> <li><a href="../LDAP/Ldap.html#methodconnect">connect</a></li>
@ -103,8 +97,6 @@ Source Location: /lib/ldap.inc<br /><br />
<li><a href="../LDAP/Ldap.html#methodnew_rand">new_rand</a></li> <li><a href="../LDAP/Ldap.html#methodnew_rand">new_rand</a></li>
<li><a href="../LDAP/Ldap.html#methodsearch_units">search_units</a></li> <li><a href="../LDAP/Ldap.html#methodsearch_units">search_units</a></li>
<li><a href="../LDAP/Ldap.html#methodserver">server</a></li> <li><a href="../LDAP/Ldap.html#methodserver">server</a></li>
<li><a href="../LDAP/Ldap.html#methodupdateCapabilities">updateCapabilities</a></li>
<li><a href="../LDAP/Ldap.html#methodupdateClasses">updateClasses</a></li>
<li><a href="../LDAP/Ldap.html#method__sleep">__sleep</a></li> <li><a href="../LDAP/Ldap.html#method__sleep">__sleep</a></li>
<li><a href="../LDAP/Ldap.html#method__wakeup">__wakeup</a></li> <li><a href="../LDAP/Ldap.html#method__wakeup">__wakeup</a></li>
</ul> </ul>
@ -130,35 +122,6 @@ Source Location: /lib/ldap.inc<br /><br />
Ldap manages connection to LDAP and includes several helper functions.<br /><br /></div><br /><br /> Ldap manages connection to LDAP and includes several helper functions.<br /><br /></div><br /><br />
<div class="top">[ <a href="#top">Top</a> ]</div><br /> <div class="top">[ <a href="#top">Top</a> ]</div><br />
<hr />
<a name="class_vars"></a>
<h3>Class Variables</h3>
<div class="tags">
<a name="var$supports_unix_hosts"></a>
<p></p>
<h4>$supports_unix_hosts = <span class="value">&nbsp;false</span></h4>
<p>[line 74]</p>
Host attribute in inetOrgPerson<br /><br /><br /><br />
<h4>Tags:</h4>
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>access:</b>&nbsp;&nbsp;</td><td>public</td>
</tr>
</table>
</div>
<br />
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>Type:</b>&nbsp;&nbsp;</td>
<td>mixed</td>
</tr>
</table>
</div><br /><br />
<div class="top">[ <a href="#top">Top</a> ]</div><br />
</div><br />
<hr /> <hr />
<a name="class_methods"></a> <a name="class_methods"></a>
@ -166,12 +129,12 @@ Ldap manages connection to LDAP and includes several helper functions.<br /><br
<div class="tags"> <div class="tags">
<hr /> <hr />
<a name="methodLdap"></a> <a name="method__construct"></a>
<h3>constructor Ldap <span class="smalllinenumber">[line 82]</span></h3> <h3>constructor __construct <span class="smalllinenumber">[line 73]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
<code>Ldap Ldap( <code>Ldap __construct(
object object
$config)</code> $config)</code>
</td></tr></table> </td></tr></table>
@ -194,7 +157,7 @@ $config)</code>
</div> </div>
<hr /> <hr />
<a name="methodclose"></a> <a name="methodclose"></a>
<h3>method close <span class="smalllinenumber">[line 144]</span></h3> <h3>method close <span class="smalllinenumber">[line 125]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -210,7 +173,7 @@ $config)</code>
</div> </div>
<hr /> <hr />
<a name="methodcmp_array"></a> <a name="methodcmp_array"></a>
<h3>method cmp_array <span class="smalllinenumber">[line 440]</span></h3> <h3>method cmp_array <span class="smalllinenumber">[line 314]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -252,7 +215,7 @@ $b)</code>
</div> </div>
<hr /> <hr />
<a name="methodconnect"></a> <a name="methodconnect"></a>
<h3>method connect <span class="smalllinenumber">[line 98]</span></h3> <h3>method connect <span class="smalllinenumber">[line 89]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -294,7 +257,7 @@ $passwd)</code>
</div> </div>
<hr /> <hr />
<a name="methoddecrypt"></a> <a name="methoddecrypt"></a>
<h3>method decrypt <span class="smalllinenumber">[line 381]</span></h3> <h3>method decrypt <span class="smalllinenumber">[line 252]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -330,7 +293,7 @@ $data)</code>
</div> </div>
<hr /> <hr />
<a name="methoddecrypt_login"></a> <a name="methoddecrypt_login"></a>
<h3>method decrypt_login <span class="smalllinenumber">[line 417]</span></h3> <h3>method decrypt_login <span class="smalllinenumber">[line 291]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -355,7 +318,7 @@ $data)</code>
</div> </div>
<hr /> <hr />
<a name="methoddestroy"></a> <a name="methoddestroy"></a>
<h3>method destroy <span class="smalllinenumber">[line 426]</span></h3> <h3>method destroy <span class="smalllinenumber">[line 300]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -371,7 +334,7 @@ $data)</code>
</div> </div>
<hr /> <hr />
<a name="methodencrypt"></a> <a name="methodencrypt"></a>
<h3>method encrypt <span class="smalllinenumber">[line 358]</span></h3> <h3>method encrypt <span class="smalllinenumber">[line 226]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -407,7 +370,7 @@ $data)</code>
</div> </div>
<hr /> <hr />
<a name="methodencrypt_login"></a> <a name="methodencrypt_login"></a>
<h3>method encrypt_login <span class="smalllinenumber">[line 406]</span></h3> <h3>method encrypt_login <span class="smalllinenumber">[line 280]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -440,7 +403,7 @@ $password)</code>
</div> </div>
<hr /> <hr />
<a name="methodnew_rand"></a> <a name="methodnew_rand"></a>
<h3>method new_rand <span class="smalllinenumber">[line 344]</span></h3> <h3>method new_rand <span class="smalllinenumber">[line 212]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -465,7 +428,7 @@ $password)</code>
</div> </div>
<hr /> <hr />
<a name="methodsearch_units"></a> <a name="methodsearch_units"></a>
<h3>method search_units <span class="smalllinenumber">[line 154]</span></h3> <h3>method search_units <span class="smalllinenumber">[line 135]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -501,7 +464,7 @@ $suffix)</code>
</div> </div>
<hr /> <hr />
<a name="methodserver"></a> <a name="methodserver"></a>
<h3>method server <span class="smalllinenumber">[line 297]</span></h3> <h3>method server <span class="smalllinenumber">[line 166]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -522,43 +485,11 @@ $suffix)</code>
<br /><br /> <br /><br />
<div class="top">[ <a href="#top">Top</a> ]</div>
</div>
<hr />
<a name="methodupdateCapabilities"></a>
<h3>method updateCapabilities <span class="smalllinenumber">[line 284]</span></h3>
<div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
<code>void updateCapabilities(
)</code>
</td></tr></table>
</td></tr></table><br />
Updates the capabilities values (var $supports_*)<br /><br /><br /><br />
<div class="top">[ <a href="#top">Top</a> ]</div>
</div>
<hr />
<a name="methodupdateClasses"></a>
<h3>method updateClasses <span class="smalllinenumber">[line 181]</span></h3>
<div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
<code>void updateClasses(
)</code>
</td></tr></table>
</td></tr></table><br />
Reads the array of objectClasses from the LDAP server<br /><br /><br /><br />
<div class="top">[ <a href="#top">Top</a> ]</div> <div class="top">[ <a href="#top">Top</a> ]</div>
</div> </div>
<hr /> <hr />
<a name="method__sleep"></a> <a name="method__sleep"></a>
<h3>method __sleep <span class="smalllinenumber">[line 307]</span></h3> <h3>method __sleep <span class="smalllinenumber">[line 176]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -574,7 +505,7 @@ $suffix)</code>
</div> </div>
<hr /> <hr />
<a name="method__wakeup"></a> <a name="method__wakeup"></a>
<h3>method __wakeup <span class="smalllinenumber">[line 315]</span></h3> <h3>method __wakeup <span class="smalllinenumber">[line 183]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -593,7 +524,7 @@ $suffix)</code>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:54 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:59:12 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
<p><a href="../ric_README.html">README</a></p> <p><a href="../ric_README.html">README</a></p>
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="../li_configuration.html">configuration</a><br /> <a href="../li_configuration.html">configuration</a><br />
@ -127,7 +127,7 @@ string $value)</code>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:54 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:59:12 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
<p><a href="../ric_README.html">README</a></p> <p><a href="../ric_README.html">README</a></p>
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="../li_configuration.html">configuration</a><br /> <a href="../li_configuration.html">configuration</a><br />
@ -47,6 +47,8 @@
<b>Files:</b><br /> <b>Files:</b><br />
<div class="package"> <div class="package">
<a href="../PDF/_lib---fpdf.php.html"> fpdf.php <a href="../PDF/_lib---fpdf.php.html"> fpdf.php
</a><br>
<a href="../PDF/_lib---lamPDF.inc.html"> lamPDF.inc
</a><br> </a><br>
<a href="../PDF/_lib---pdf.inc.html"> pdf.inc <a href="../PDF/_lib---pdf.inc.html"> pdf.inc
</a><br> </a><br>
@ -3217,7 +3219,7 @@ $s)</code>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:47 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:59:02 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
<p><a href="../ric_README.html">README</a></p> <p><a href="../ric_README.html">README</a></p>
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="../li_configuration.html">configuration</a><br /> <a href="../li_configuration.html">configuration</a><br />
@ -47,6 +47,8 @@
<b>Files:</b><br /> <b>Files:</b><br />
<div class="package"> <div class="package">
<a href="../PDF/_lib---fpdf.php.html"> fpdf.php <a href="../PDF/_lib---fpdf.php.html"> fpdf.php
</a><br>
<a href="../PDF/_lib---lamPDF.inc.html"> lamPDF.inc
</a><br> </a><br>
<a href="../PDF/_lib---pdf.inc.html"> pdf.inc <a href="../PDF/_lib---pdf.inc.html"> pdf.inc
</a><br> </a><br>
@ -1634,7 +1636,7 @@ $s)</code>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:11:15 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:59:35 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
<p><a href="../ric_README.html">README</a></p> <p><a href="../ric_README.html">README</a></p>
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="../li_configuration.html">configuration</a><br /> <a href="../li_configuration.html">configuration</a><br />
@ -47,6 +47,8 @@
<b>Files:</b><br /> <b>Files:</b><br />
<div class="package"> <div class="package">
<a href="../PDF/_lib---fpdf.php.html"> fpdf.php <a href="../PDF/_lib---fpdf.php.html"> fpdf.php
</a><br>
<a href="../PDF/_lib---lamPDF.inc.html"> lamPDF.inc
</a><br> </a><br>
<a href="../PDF/_lib---pdf.inc.html"> pdf.inc <a href="../PDF/_lib---pdf.inc.html"> pdf.inc
</a><br> </a><br>
@ -110,7 +112,7 @@ This file includes information about the Bitstream Vera font.<br /><br /><br /><
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:11:16 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:59:36 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
<p><a href="../ric_README.html">README</a></p> <p><a href="../ric_README.html">README</a></p>
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="../li_configuration.html">configuration</a><br /> <a href="../li_configuration.html">configuration</a><br />
@ -47,6 +47,8 @@
<b>Files:</b><br /> <b>Files:</b><br />
<div class="package"> <div class="package">
<a href="../PDF/_lib---fpdf.php.html"> fpdf.php <a href="../PDF/_lib---fpdf.php.html"> fpdf.php
</a><br>
<a href="../PDF/_lib---lamPDF.inc.html"> lamPDF.inc
</a><br> </a><br>
<a href="../PDF/_lib---pdf.inc.html"> pdf.inc <a href="../PDF/_lib---pdf.inc.html"> pdf.inc
</a><br> </a><br>
@ -110,7 +112,7 @@ This file includes information about the Bitstream Vera font.<br /><br /><br /><
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:11:16 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:59:36 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
<p><a href="../ric_README.html">README</a></p> <p><a href="../ric_README.html">README</a></p>
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="../li_configuration.html">configuration</a><br /> <a href="../li_configuration.html">configuration</a><br />
@ -47,6 +47,8 @@
<b>Files:</b><br /> <b>Files:</b><br />
<div class="package"> <div class="package">
<a href="../PDF/_lib---fpdf.php.html"> fpdf.php <a href="../PDF/_lib---fpdf.php.html"> fpdf.php
</a><br>
<a href="../PDF/_lib---lamPDF.inc.html"> lamPDF.inc
</a><br> </a><br>
<a href="../PDF/_lib---pdf.inc.html"> pdf.inc <a href="../PDF/_lib---pdf.inc.html"> pdf.inc
</a><br> </a><br>
@ -110,7 +112,7 @@ This file includes information about the Bitstream Vera font.<br /><br /><br /><
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:11:16 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:59:36 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
<p><a href="../ric_README.html">README</a></p> <p><a href="../ric_README.html">README</a></p>
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="../li_configuration.html">configuration</a><br /> <a href="../li_configuration.html">configuration</a><br />
@ -47,6 +47,8 @@
<b>Files:</b><br /> <b>Files:</b><br />
<div class="package"> <div class="package">
<a href="../PDF/_lib---fpdf.php.html"> fpdf.php <a href="../PDF/_lib---fpdf.php.html"> fpdf.php
</a><br>
<a href="../PDF/_lib---lamPDF.inc.html"> lamPDF.inc
</a><br> </a><br>
<a href="../PDF/_lib---pdf.inc.html"> pdf.inc <a href="../PDF/_lib---pdf.inc.html"> pdf.inc
</a><br> </a><br>
@ -110,7 +112,7 @@ This file includes information about the Bitstream Vera font.<br /><br /><br /><
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:11:16 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:59:36 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
<p><a href="../ric_README.html">README</a></p> <p><a href="../ric_README.html">README</a></p>
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="../li_configuration.html">configuration</a><br /> <a href="../li_configuration.html">configuration</a><br />
@ -47,6 +47,8 @@
<b>Files:</b><br /> <b>Files:</b><br />
<div class="package"> <div class="package">
<a href="../PDF/_lib---fpdf.php.html"> fpdf.php <a href="../PDF/_lib---fpdf.php.html"> fpdf.php
</a><br>
<a href="../PDF/_lib---lamPDF.inc.html"> lamPDF.inc
</a><br> </a><br>
<a href="../PDF/_lib---pdf.inc.html"> pdf.inc <a href="../PDF/_lib---pdf.inc.html"> pdf.inc
</a><br> </a><br>
@ -128,7 +130,7 @@ This file includes the FPDF implementation which is used to generate PDF files.<
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:47 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:59:02 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -0,0 +1,128 @@
<html>
<head>
<title>Docs for page lamPDF.inc</title>
<link rel="stylesheet" type="text/css" href="../media/style.css">
</head>
<body>
<table border="0" cellspacing="0" cellpadding="0" height="48" width="100%">
<tr>
<td class="header_top">PDF</td>
</tr>
<tr><td class="header_line"><img src="../media/empty.png" width="1" height="1" border="0" alt="" /></td></tr>
<tr>
<td class="header_menu">
[ <a href="../classtrees_PDF.html" class="menu">class tree: PDF</a> ]
[ <a href="../elementindex_PDF.html" class="menu">index: PDF</a> ]
[ <a href="../elementindex.html" class="menu">all elements</a> ]
</td>
</tr>
<tr><td class="header_line"><img src="../media/empty.png" width="1" height="1" border="0" alt="" /></td></tr>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr valign="top">
<td width="200" class="menu">
<div id="ric">
<p><a href="../ric_README.html">README</a></p>
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
</div>
<b>Packages:</b><br />
<a href="../li_configuration.html">configuration</a><br />
<a href="../li_Help.html">Help</a><br />
<a href="../li_LDAP.html">LDAP</a><br />
<a href="../li_lib.html">lib</a><br />
<a href="../li_lists.html">lists</a><br />
<a href="../li_main.html">main</a><br />
<a href="../li_modules.html">modules</a><br />
<a href="../li_PDF.html">PDF</a><br />
<a href="../li_profiles.html">profiles</a><br />
<a href="../li_selfService.html">selfService</a><br />
<a href="../li_tests.html">tests</a><br />
<a href="../li_tools.html">tools</a><br />
<a href="../li_types.html">types</a><br />
<br /><br />
<b>Files:</b><br />
<div class="package">
<a href="../PDF/_lib---fpdf.php.html"> fpdf.php
</a><br>
<a href="../PDF/_lib---lamPDF.inc.html"> lamPDF.inc
</a><br>
<a href="../PDF/_lib---pdf.inc.html"> pdf.inc
</a><br>
<a href="../PDF/_templates---pdfedit---pdfdelete.php.html"> pdfdelete.php
</a><br>
<a href="../PDF/_templates---pdfedit---pdfmain.php.html"> pdfmain.php
</a><br>
<a href="../PDF/_templates---pdfedit---pdfpage.php.html"> pdfpage.php
</a><br>
<a href="../PDF/_lib---pdfstruct.inc.html"> pdfstruct.inc
</a><br>
<a href="../PDF/_lib---ufpdf.php.html"> ufpdf.php
</a><br>
<a href="../PDF/_lib---font---vera.php.html"> vera.php
</a><br>
<a href="../PDF/_lib---font---verab.php.html"> verab.php
</a><br>
<a href="../PDF/_lib---font---verabi.php.html"> verabi.php
</a><br>
<a href="../PDF/_lib---font---verai.php.html"> verai.php
</a><br>
<a href="../PDF/_lib---xml_parser.inc.html"> xml_parser.inc
</a><br>
</div><br />
<b>Classes:</b><br />
<div class="package">
<a href="../PDF/FPDF.html">FPDF</a><br />
<a href="../PDF/lamPDF.html">lamPDF</a><br />
<a href="../PDF/UFPDF.html">UFPDF</a><br />
<a href="../PDF/xmlParser.html">xmlParser</a><br />
</div>
</td>
<td>
<table cellpadding="10" cellspacing="0" width="100%" border="0"><tr><td valign="top">
<h1>Procedural File: lamPDF.inc</h1>
Source Location: /lib/lamPDF.inc<br /><br />
<br>
<br>
<div class="contents">
<h2>Classes:</h2>
<dt><a href="../PDF/lamPDF.html">lamPDF</a></dt>
<dd>Creates a LAM information page in PDF format.</dd>
</div><br /><br />
<h2>Page Details:</h2>
LDAP Account Manager PDF printing library. It consists of lamPDF class, the createModulePDF() function that may be called by other pages and furthermore some helper functions.<br /><br /><br /><br />
<h4>Tags:</h4>
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>author:</b>&nbsp;&nbsp;</td><td>Michael Duergner</td>
</tr>
</table>
</div>
<br /><br />
<br /><br />
<br /><br />
<br />
<div class="credit">
<hr />
Documentation generated on Sun, 06 Jan 2008 18:59:12 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div>
</td></tr></table>
</td>
</tr>
</table>
</body>
</html>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
<p><a href="../ric_README.html">README</a></p> <p><a href="../ric_README.html">README</a></p>
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="../li_configuration.html">configuration</a><br /> <a href="../li_configuration.html">configuration</a><br />
@ -47,6 +47,8 @@
<b>Files:</b><br /> <b>Files:</b><br />
<div class="package"> <div class="package">
<a href="../PDF/_lib---fpdf.php.html"> fpdf.php <a href="../PDF/_lib---fpdf.php.html"> fpdf.php
</a><br>
<a href="../PDF/_lib---lamPDF.inc.html"> lamPDF.inc
</a><br> </a><br>
<a href="../PDF/_lib---pdf.inc.html"> pdf.inc <a href="../PDF/_lib---pdf.inc.html"> pdf.inc
</a><br> </a><br>
@ -92,11 +94,6 @@ Source Location: /lib/pdf.inc<br /><br />
<br> <br>
<br> <br>
<div class="contents">
<h2>Classes:</h2>
<dt><a href="../PDF/lamPDF.html">lamPDF</a></dt>
<dd>Creates a LAM information page in PDF format.</dd>
</div><br /><br />
<h2>Page Details:</h2> <h2>Page Details:</h2>
LDAP Account Manager PDF printing library. It consists of lamPDF class, the createModulePDF() function that may be called by other pages and furthermore some helper functions.<br /><br /><br /><br /> LDAP Account Manager PDF printing library. It consists of lamPDF class, the createModulePDF() function that may be called by other pages and furthermore some helper functions.<br /><br /><br /><br />
@ -111,11 +108,9 @@ LDAP Account Manager PDF printing library. It consists of lamPDF class, the cre
<br /><br /> <br /><br />
<h4>Includes:</h4> <h4>Includes:</h4>
<div class="tags"> <div class="tags">
include_once(<a href="../PDF/_lib---ufpdf.php.html">"ufpdf.php"</a>) [line 39]<br /> include_once(<a href="../PDF/_lib---pdfstruct.inc.html">'pdfstruct.inc'</a>) [line 39]<br />
Unicode support for FPDF<br /><br />include_once(<a href="../PDF/_lib---xml_parser.inc.html">'xml_parser.inc'</a>) [line 42]<br /> access to PDF configuration files<br /><br />include_once(<a href="../PDF/_lib---xml_parser.inc.html">'xml_parser.inc'</a>) [line 36]<br />
XML functions<br /><br />include_once(<a href="../PDF/_lib---fpdf.php.html">"fpdf.php"</a>) [line 36]<br /> XML functions<br /><br /></div>
PDF generator class<br /><br />include_once(<a href="../PDF/_lib---pdfstruct.inc.html">'pdfstruct.inc'</a>) [line 45]<br />
access to PDF configuration files<br /><br /></div>
<br /><br /> <br /><br />
<br /><br /> <br /><br />
<hr /> <hr />
@ -134,7 +129,7 @@ access to PDF configuration files<br /><br /></div>
<br /> <br />
<hr /> <hr />
<a name="functioncreateModulePDF"></a> <a name="functioncreateModulePDF"></a>
<h3>createModulePDF <span class="smalllinenumber">[line 62]</span></h3> <h3>createModulePDF <span class="smalllinenumber">[line 56]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -162,7 +157,7 @@ array $accounts, [string $pdf_structure = &amp;quot;default&amp;quot;])</code>
</div> </div>
<hr /> <hr />
<a name="functiongetSectionHeadline"></a> <a name="functiongetSectionHeadline"></a>
<h3>getSectionHeadline <span class="smalllinenumber">[line 169]</span></h3> <h3>getSectionHeadline <span class="smalllinenumber">[line 170]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -194,7 +189,7 @@ string $line)</code>
</div> </div>
<hr /> <hr />
<a name="functionprocessAttributes"></a> <a name="functionprocessAttributes"></a>
<h3>processAttributes <span class="smalllinenumber">[line 297]</span></h3> <h3>processAttributes <span class="smalllinenumber">[line 298]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -231,7 +226,7 @@ string $attrs, [array $return = array()])</code>
</div> </div>
<hr /> <hr />
<a name="functionprocessFormatTags"></a> <a name="functionprocessFormatTags"></a>
<h3>processFormatTags <span class="smalllinenumber">[line 264]</span></h3> <h3>processFormatTags <span class="smalllinenumber">[line 265]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -268,7 +263,7 @@ string $line, string $style)</code>
</div> </div>
<hr /> <hr />
<a name="functionprocessLine"></a> <a name="functionprocessLine"></a>
<h3>processLine <span class="smalllinenumber">[line 188]</span></h3> <h3>processLine <span class="smalllinenumber">[line 189]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -311,7 +306,7 @@ string $line, [boolean $first_td = true], $fontName)</code>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:59 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:59:18 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
<p><a href="../ric_README.html">README</a></p> <p><a href="../ric_README.html">README</a></p>
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="../li_configuration.html">configuration</a><br /> <a href="../li_configuration.html">configuration</a><br />
@ -47,6 +47,8 @@
<b>Files:</b><br /> <b>Files:</b><br />
<div class="package"> <div class="package">
<a href="../PDF/_lib---fpdf.php.html"> fpdf.php <a href="../PDF/_lib---fpdf.php.html"> fpdf.php
</a><br>
<a href="../PDF/_lib---lamPDF.inc.html"> lamPDF.inc
</a><br> </a><br>
<a href="../PDF/_lib---pdf.inc.html"> pdf.inc <a href="../PDF/_lib---pdf.inc.html"> pdf.inc
</a><br> </a><br>
@ -282,7 +284,7 @@ string $scope, string $definition)</code>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:59 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:59:18 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
<p><a href="../ric_README.html">README</a></p> <p><a href="../ric_README.html">README</a></p>
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="../li_configuration.html">configuration</a><br /> <a href="../li_configuration.html">configuration</a><br />
@ -47,6 +47,8 @@
<b>Files:</b><br /> <b>Files:</b><br />
<div class="package"> <div class="package">
<a href="../PDF/_lib---fpdf.php.html"> fpdf.php <a href="../PDF/_lib---fpdf.php.html"> fpdf.php
</a><br>
<a href="../PDF/_lib---lamPDF.inc.html"> lamPDF.inc
</a><br> </a><br>
<a href="../PDF/_lib---pdf.inc.html"> pdf.inc <a href="../PDF/_lib---pdf.inc.html"> pdf.inc
</a><br> </a><br>
@ -135,7 +137,7 @@ include_once(<a href="../PDF/_lib---fpdf.php.html">'fpdf.php'</a>) [line 29]<br
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:11:15 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:59:35 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
<p><a href="../ric_README.html">README</a></p> <p><a href="../ric_README.html">README</a></p>
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="../li_configuration.html">configuration</a><br /> <a href="../li_configuration.html">configuration</a><br />
@ -47,6 +47,8 @@
<b>Files:</b><br /> <b>Files:</b><br />
<div class="package"> <div class="package">
<a href="../PDF/_lib---fpdf.php.html"> fpdf.php <a href="../PDF/_lib---fpdf.php.html"> fpdf.php
</a><br>
<a href="../PDF/_lib---lamPDF.inc.html"> lamPDF.inc
</a><br> </a><br>
<a href="../PDF/_lib---pdf.inc.html"> pdf.inc <a href="../PDF/_lib---pdf.inc.html"> pdf.inc
</a><br> </a><br>
@ -115,7 +117,7 @@ LDAP Account Manager xmlParser class<br /><br /><br /><br />
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:11:16 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:59:36 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
<p><a href="../ric_README.html">README</a></p> <p><a href="../ric_README.html">README</a></p>
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="../li_configuration.html">configuration</a><br /> <a href="../li_configuration.html">configuration</a><br />
@ -47,6 +47,8 @@
<b>Files:</b><br /> <b>Files:</b><br />
<div class="package"> <div class="package">
<a href="../PDF/_lib---fpdf.php.html"> fpdf.php <a href="../PDF/_lib---fpdf.php.html"> fpdf.php
</a><br>
<a href="../PDF/_lib---lamPDF.inc.html"> lamPDF.inc
</a><br> </a><br>
<a href="../PDF/_lib---pdf.inc.html"> pdf.inc <a href="../PDF/_lib---pdf.inc.html"> pdf.inc
</a><br> </a><br>
@ -99,15 +101,15 @@ Manages deletion of pdf structures.<br /><br /><br /><br />
<div class="tags"> <div class="tags">
<table border="0" cellspacing="0" cellpadding="0"> <table border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td><b>author:</b>&nbsp;&nbsp;</td><td>Michael Dürgner</td> <td><b>author:</b>&nbsp;&nbsp;</td><td>Michael Duergner</td>
</tr> </tr>
</table> </table>
</div> </div>
<br /><br /> <br /><br />
<h4>Includes:</h4> <h4>Includes:</h4>
<div class="tags"> <div class="tags">
include_once("../../lib/security.inc") [line 32]<br /> include_once("../../lib/security.inc") [line 33]<br />
security functions<br /><br />include_once('../../lib/pdfstruct.inc') [line 34]<br /> security functions<br /><br />include_once('../../lib/pdfstruct.inc') [line 35]<br />
helper functions for pdf<br /><br /></div> helper functions for pdf<br /><br /></div>
<br /><br /> <br /><br />
<br /><br /> <br /><br />
@ -115,7 +117,7 @@ helper functions for pdf<br /><br /></div>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:59 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:59:18 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
<p><a href="../ric_README.html">README</a></p> <p><a href="../ric_README.html">README</a></p>
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="../li_configuration.html">configuration</a><br /> <a href="../li_configuration.html">configuration</a><br />
@ -47,6 +47,8 @@
<b>Files:</b><br /> <b>Files:</b><br />
<div class="package"> <div class="package">
<a href="../PDF/_lib---fpdf.php.html"> fpdf.php <a href="../PDF/_lib---fpdf.php.html"> fpdf.php
</a><br>
<a href="../PDF/_lib---lamPDF.inc.html"> lamPDF.inc
</a><br> </a><br>
<a href="../PDF/_lib---pdf.inc.html"> pdf.inc <a href="../PDF/_lib---pdf.inc.html"> pdf.inc
</a><br> </a><br>
@ -99,7 +101,7 @@ This is the main window of the pdf structure editor.<br /><br /><br /><br />
<div class="tags"> <div class="tags">
<table border="0" cellspacing="0" cellpadding="0"> <table border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td><b>author:</b>&nbsp;&nbsp;</td><td>Michael Dürgner</td> <td><b>author:</b>&nbsp;&nbsp;</td><td>Michael D<EFBFBD>rgner</td>
</tr> </tr>
</table> </table>
</div> </div>
@ -118,7 +120,7 @@ module functions<br /><br /></div>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:59 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:59:18 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
<p><a href="../ric_README.html">README</a></p> <p><a href="../ric_README.html">README</a></p>
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="../li_configuration.html">configuration</a><br /> <a href="../li_configuration.html">configuration</a><br />
@ -47,6 +47,8 @@
<b>Files:</b><br /> <b>Files:</b><br />
<div class="package"> <div class="package">
<a href="../PDF/_lib---fpdf.php.html"> fpdf.php <a href="../PDF/_lib---fpdf.php.html"> fpdf.php
</a><br>
<a href="../PDF/_lib---lamPDF.inc.html"> lamPDF.inc
</a><br> </a><br>
<a href="../PDF/_lib---pdf.inc.html"> pdf.inc <a href="../PDF/_lib---pdf.inc.html"> pdf.inc
</a><br> </a><br>
@ -109,12 +111,12 @@ Displays the main page of the PDF editor where the user can select the displayed
<br /><br /> <br /><br />
<h4>Includes:</h4> <h4>Includes:</h4>
<div class="tags"> <div class="tags">
include_once('../../lib/pdfstruct.inc') [line 37]<br /> include_once('../../lib/pdfstruct.inc') [line 38]<br />
access to PDF configuration files<br /><br />include_once("../../lib/security.inc") [line 35]<br /> access to PDF configuration files<br /><br />include_once("../../lib/security.inc") [line 36]<br />
security functions<br /><br />include_once('../../lib/ldap.inc') [line 39]<br /> security functions<br /><br />include_once('../../lib/ldap.inc') [line 40]<br />
LDAP object<br /><br />include_once('../../lib/config.inc') [line 41]<br /> LDAP object<br /><br />include_once('../../lib/config.inc') [line 42]<br />
LAM configuration<br /><br />include_once('../../lib/xml_parser.inc') [line 45]<br /> LAM configuration<br /><br />include_once('../../lib/xml_parser.inc') [line 46]<br />
XML functions<br /><br />include_once('../../lib/modules.inc') [line 43]<br /> XML functions<br /><br />include_once('../../lib/modules.inc') [line 44]<br />
module functions<br /><br /></div> module functions<br /><br /></div>
<br /><br /> <br /><br />
<br /><br /> <br /><br />
@ -122,7 +124,7 @@ module functions<br /><br /></div>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:59 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:59:18 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
<p><a href="../ric_README.html">README</a></p> <p><a href="../ric_README.html">README</a></p>
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="../li_configuration.html">configuration</a><br /> <a href="../li_configuration.html">configuration</a><br />
@ -47,6 +47,8 @@
<b>Files:</b><br /> <b>Files:</b><br />
<div class="package"> <div class="package">
<a href="../PDF/_lib---fpdf.php.html"> fpdf.php <a href="../PDF/_lib---fpdf.php.html"> fpdf.php
</a><br>
<a href="../PDF/_lib---lamPDF.inc.html"> lamPDF.inc
</a><br> </a><br>
<a href="../PDF/_lib---pdf.inc.html"> pdf.inc <a href="../PDF/_lib---pdf.inc.html"> pdf.inc
</a><br> </a><br>
@ -87,7 +89,7 @@
<table cellpadding="10" cellspacing="0" width="100%" border="0"><tr><td valign="top"> <table cellpadding="10" cellspacing="0" width="100%" border="0"><tr><td valign="top">
<h1>Class: lamPDF</h1> <h1>Class: lamPDF</h1>
Source Location: /lib/pdf.inc<br /><br /> Source Location: /lib/lamPDF.inc<br /><br />
<table width="100%" border="0"> <table width="100%" border="0">
@ -100,11 +102,15 @@ Source Location: /lib/pdf.inc<br /><br />
| |
--lamPDF</pre><br /> --lamPDF</pre><br />
<div class="description">Creates a LAM information page in PDF format.</div><br /><br /> <div class="description">Creates a LAM information page in PDF format.</div><br /><br />
<h4>Author(s):</h4>
<ul>
<li>Michael Duergner</li>
</ul>
</td> </td>
@ -122,7 +128,7 @@ Source Location: /lib/pdf.inc<br /><br />
<td valign="top"> <td valign="top">
<h3><a href="#class_methods">Methods</a></h3> <h3><a href="#class_methods">Methods</a></h3>
<ul> <ul>
<li><a href="../PDF/lamPDF.html#methodlamPDF">lamPDF</a></li> <li><a href="../PDF/lamPDF.html#method__construct">__construct</a></li>
<li><a href="../PDF/lamPDF.html#methodfooter">footer</a></li> <li><a href="../PDF/lamPDF.html#methodfooter">footer</a></li>
<li><a href="../PDF/lamPDF.html#methodheader">header</a></li> <li><a href="../PDF/lamPDF.html#methodheader">header</a></li>
</ul> </ul>
@ -1057,8 +1063,17 @@ Source Location: /lib/pdf.inc<br /><br />
<a name="class_details"></a> <a name="class_details"></a>
<h3>Class Details</h3> <h3>Class Details</h3>
<div class="tags"> <div class="tags">
[line 338]<br /> [line 38]<br />
Creates a LAM information page in PDF format.<br /><br /></div><br /><br /> Creates a LAM information page in PDF format.<br /><br /><br /><br />
<h4>Tags:</h4>
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>author:</b>&nbsp;&nbsp;</td><td>Michael Duergner</td>
</tr>
</table>
</div>
</div><br /><br />
<div class="top">[ <a href="#top">Top</a> ]</div><br /> <div class="top">[ <a href="#top">Top</a> ]</div><br />
<hr /> <hr />
@ -1069,7 +1084,7 @@ Creates a LAM information page in PDF format.<br /><br /></div><br /><br />
<p></p> <p></p>
<h4>$fontList = <span class="value">array(<br> <h4>$fontList = <span class="value">array(<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'BitstreamVeraSans-Roman'&nbsp;=&gt;&nbsp;array('vera.php',&nbsp;'verab.php',&nbsp;'verabi.php',&nbsp;'verai.php'))</span></h4> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'BitstreamVeraSans-Roman'&nbsp;=&gt;&nbsp;array('vera.php',&nbsp;'verab.php',&nbsp;'verabi.php',&nbsp;'verai.php'))</span></h4>
<p>[line 354]</p> <p>[line 54]</p>
list of supported fonts<br /><br /><p>format: &lt;font name&gt; =&gt; array(&lt;file for default font style&gt;, &lt;file for bold&gt;, &lt;italic&gt;, &lt;bold italic&gt;)</p><br /> list of supported fonts<br /><br /><p>format: &lt;font name&gt; =&gt; array(&lt;file for default font style&gt;, &lt;file for bold&gt;, &lt;italic&gt;, &lt;bold italic&gt;)</p><br />
<br /> <br />
<div class="tags"> <div class="tags">
@ -1084,7 +1099,7 @@ Creates a LAM information page in PDF format.<br /><br /></div><br /><br />
<a name="var$fontName"></a> <a name="var$fontName"></a>
<p></p> <p></p>
<h4>$fontName = <span class="value"></span></h4> <h4>$fontName = <span class="value"></span></h4>
<p>[line 348]</p> <p>[line 48]</p>
current active font name<br /><br /> current active font name<br /><br />
<br /> <br />
<div class="tags"> <div class="tags">
@ -1099,7 +1114,7 @@ Creates a LAM information page in PDF format.<br /><br /></div><br /><br />
<a name="var$page_definitions"></a> <a name="var$page_definitions"></a>
<p></p> <p></p>
<h4>$page_definitions = <span class="value"></span></h4> <h4>$page_definitions = <span class="value"></span></h4>
<p>[line 343]</p> <p>[line 43]</p>
format settings for page layout<br /><br /> format settings for page layout<br /><br />
<br /> <br />
<div class="tags"> <div class="tags">
@ -1119,12 +1134,12 @@ Creates a LAM information page in PDF format.<br /><br /></div><br /><br />
<div class="tags"> <div class="tags">
<hr /> <hr />
<a name="methodlamPDF"></a> <a name="method__construct"></a>
<h3>constructor lamPDF <span class="smalllinenumber">[line 364]</span></h3> <h3>constructor __construct <span class="smalllinenumber">[line 64]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
<code>lamPDF lamPDF( <code>lamPDF __construct(
[string [string
$account_type = &quot;user&quot;], [array $account_type = &quot;user&quot;], [array
$page_definitions = array()], $page_definitions = array()],
@ -1159,7 +1174,7 @@ $fontName)</code>
</div> </div>
<hr /> <hr />
<a name="methodfooter"></a> <a name="methodfooter"></a>
<h3>method footer <span class="smalllinenumber">[line 420]</span></h3> <h3>method footer <span class="smalllinenumber">[line 120]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -1175,7 +1190,7 @@ $fontName)</code>
</div> </div>
<hr /> <hr />
<a name="methodheader"></a> <a name="methodheader"></a>
<h3>method header <span class="smalllinenumber">[line 388]</span></h3> <h3>method header <span class="smalllinenumber">[line 88]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -1194,7 +1209,7 @@ $fontName)</code>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:59 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:59:12 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
<p><a href="../ric_README.html">README</a></p> <p><a href="../ric_README.html">README</a></p>
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="../li_configuration.html">configuration</a><br /> <a href="../li_configuration.html">configuration</a><br />
@ -47,6 +47,8 @@
<b>Files:</b><br /> <b>Files:</b><br />
<div class="package"> <div class="package">
<a href="../PDF/_lib---fpdf.php.html"> fpdf.php <a href="../PDF/_lib---fpdf.php.html"> fpdf.php
</a><br>
<a href="../PDF/_lib---lamPDF.inc.html"> lamPDF.inc
</a><br> </a><br>
<a href="../PDF/_lib---pdf.inc.html"> pdf.inc <a href="../PDF/_lib---pdf.inc.html"> pdf.inc
</a><br> </a><br>
@ -114,7 +116,7 @@ Source Location: /lib/xml_parser.inc<br /><br />
<td valign="top"> <td valign="top">
<h3><a href="#class_methods">Methods</a></h3> <h3><a href="#class_methods">Methods</a></h3>
<ul> <ul>
<li><a href="../PDF/xmlParser.html#methodxmlParser">xmlParser</a></li> <li><a href="../PDF/xmlParser.html#method__construct">__construct</a></li>
<li><a href="../PDF/xmlParser.html#methodparse">parse</a></li> <li><a href="../PDF/xmlParser.html#methodparse">parse</a></li>
</ul> </ul>
</td> </td>
@ -155,17 +157,17 @@ Source Location: /lib/xml_parser.inc<br /><br />
<div class="tags"> <div class="tags">
<hr /> <hr />
<a name="methodxmlParser"></a> <a name="method__construct"></a>
<h3>constructor xmlParser <span class="smalllinenumber">[line 46]</span></h3> <h3>constructor __construct <span class="smalllinenumber">[line 46]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
<code>xmlParser xmlParser( <code>xmlParser __construct(
)</code> )</code>
</td></tr></table> </td></tr></table>
</td></tr></table><br /> </td></tr></table><br />
<br /><br /> Constructor<br /><br /><br /><br />
<div class="top">[ <a href="#top">Top</a> ]</div> <div class="top">[ <a href="#top">Top</a> ]</div>
@ -202,7 +204,7 @@ $filename)</code>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:11:16 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:59:36 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="ric_INSTALL.html">INSTALL</a></p>
<p><a href="ric_README.html">README</a></p> <p><a href="ric_README.html">README</a></p>
<p><a href="ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="li_configuration.html">configuration</a><br /> <a href="li_configuration.html">configuration</a><br />
@ -51,7 +51,7 @@
<h1>Class Trees for Package Help</h1> <h1>Class Trees for Package Help</h1>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:35 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:58:48 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="ric_INSTALL.html">INSTALL</a></p>
<p><a href="ric_README.html">README</a></p> <p><a href="ric_README.html">README</a></p>
<p><a href="ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="li_configuration.html">configuration</a><br /> <a href="li_configuration.html">configuration</a><br />
@ -56,7 +56,7 @@
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:36 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:58:48 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="ric_INSTALL.html">INSTALL</a></p>
<p><a href="ric_README.html">README</a></p> <p><a href="ric_README.html">README</a></p>
<p><a href="ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="li_configuration.html">configuration</a><br /> <a href="li_configuration.html">configuration</a><br />
@ -65,7 +65,7 @@
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:35 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:58:48 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="ric_INSTALL.html">INSTALL</a></p>
<p><a href="ric_README.html">README</a></p> <p><a href="ric_README.html">README</a></p>
<p><a href="ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="li_configuration.html">configuration</a><br /> <a href="li_configuration.html">configuration</a><br />
@ -61,7 +61,7 @@
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:35 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:58:48 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="ric_INSTALL.html">INSTALL</a></p>
<p><a href="ric_README.html">README</a></p> <p><a href="ric_README.html">README</a></p>
<p><a href="ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="li_configuration.html">configuration</a><br /> <a href="li_configuration.html">configuration</a><br />
@ -68,7 +68,7 @@
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:35 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:58:48 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="ric_INSTALL.html">INSTALL</a></p>
<p><a href="ric_README.html">README</a></p> <p><a href="ric_README.html">README</a></p>
<p><a href="ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="li_configuration.html">configuration</a><br /> <a href="li_configuration.html">configuration</a><br />
@ -56,9 +56,21 @@
<li><a href="lists/lamGroupList.html">lamGroupList</a></li><li><a href="lists/lamHostList.html">lamHostList</a></li><li><a href="lists/lamMailAliasList.html">lamMailAliasList</a></li><li><a href="lists/lamSmbDomainList.html">lamSmbDomainList</a></li><li><a href="lists/lamUserList.html">lamUserList</a></li></ul></li> <li><a href="lists/lamGroupList.html">lamGroupList</a></li><li><a href="lists/lamHostList.html">lamHostList</a></li><li><a href="lists/lamMailAliasList.html">lamMailAliasList</a></li><li><a href="lists/lamSmbDomainList.html">lamSmbDomainList</a></li><li><a href="lists/lamUserList.html">lamUserList</a></li></ul></li>
</ul> </ul>
<hr />
<div class="classtree">Root class lamListOption</div><br />
<ul>
<li><a href="lists/lamListOption.html">lamListOption</a><ul>
<li><a href="lists/lamBooleanListOption.html">lamBooleanListOption</a></li><li><a href="lists/lamSelectListOption.html">lamSelectListOption</a></li></ul></li>
</ul>
<hr />
<div class="classtree">Root class lamListTool</div><br />
<ul>
<li><a href="lists/lamListTool.html">lamListTool</a></li></ul>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:36 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:58:48 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="ric_INSTALL.html">INSTALL</a></p>
<p><a href="ric_README.html">README</a></p> <p><a href="ric_README.html">README</a></p>
<p><a href="ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="li_configuration.html">configuration</a><br /> <a href="li_configuration.html">configuration</a><br />
@ -51,7 +51,7 @@
<h1>Class Trees for Package main</h1> <h1>Class Trees for Package main</h1>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:36 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:58:48 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="ric_INSTALL.html">INSTALL</a></p>
<p><a href="ric_README.html">README</a></p> <p><a href="ric_README.html">README</a></p>
<p><a href="ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="li_configuration.html">configuration</a><br /> <a href="li_configuration.html">configuration</a><br />
@ -58,7 +58,9 @@
<div class="classtree">Root class baseModule</div><br /> <div class="classtree">Root class baseModule</div><br />
<ul> <ul>
<li><a href="modules/baseModule.html">baseModule</a><ul> <li><a href="modules/baseModule.html">baseModule</a><ul>
<li><a href="modules/account.html">account</a></li><li><a href="modules/ieee802Device.html">ieee802Device</a></li><li><a href="modules/inetLocalMailRecipient.html">inetLocalMailRecipient</a></li><li><a href="modules/inetOrgPerson.html">inetOrgPerson</a></li><li><a href="modules/kolabUser.html">kolabUser</a></li><li><a href="modules/ldapPublicKey.html">ldapPublicKey</a></li><li><a href="modules/nisMailAlias.html">nisMailAlias</a></li><li><a href="modules/posixAccount.html">posixAccount</a></li><li><a href="modules/posixGroup.html">posixGroup</a></li><li><a href="modules/quota.html">quota</a></li><li><a href="modules/sambaAccount.html">sambaAccount</a></li><li><a href="modules/sambaDomain.html">sambaDomain</a></li><li><a href="modules/sambaGroupMapping.html">sambaGroupMapping</a></li><li><a href="modules/sambaSamAccount.html">sambaSamAccount</a></li><li><a href="modules/shadowAccount.html">shadowAccount</a></li></ul></li> <li><a href="modules/account.html">account</a></li><li><a href="modules/groupOfNames.html">groupOfNames</a><ul>
<li><a href="modules/groupOfUniqueNames.html">groupOfUniqueNames</a></li></ul></li>
<li><a href="modules/ieee802Device.html">ieee802Device</a></li><li><a href="modules/inetLocalMailRecipient.html">inetLocalMailRecipient</a></li><li><a href="modules/inetOrgPerson.html">inetOrgPerson</a></li><li><a href="modules/kolabUser.html">kolabUser</a></li><li><a href="modules/ldapPublicKey.html">ldapPublicKey</a></li><li><a href="modules/nisMailAlias.html">nisMailAlias</a></li><li><a href="modules/posixAccount.html">posixAccount</a></li><li><a href="modules/posixGroup.html">posixGroup</a></li><li><a href="modules/quota.html">quota</a></li><li><a href="modules/sambaAccount.html">sambaAccount</a></li><li><a href="modules/sambaDomain.html">sambaDomain</a></li><li><a href="modules/sambaGroupMapping.html">sambaGroupMapping</a></li><li><a href="modules/sambaSamAccount.html">sambaSamAccount</a></li><li><a href="modules/shadowAccount.html">shadowAccount</a></li></ul></li>
</ul> </ul>
<hr /> <hr />
@ -78,7 +80,7 @@
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:35 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:58:48 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="ric_INSTALL.html">INSTALL</a></p>
<p><a href="ric_README.html">README</a></p> <p><a href="ric_README.html">README</a></p>
<p><a href="ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="li_configuration.html">configuration</a><br /> <a href="li_configuration.html">configuration</a><br />
@ -51,7 +51,7 @@
<h1>Class Trees for Package profiles</h1> <h1>Class Trees for Package profiles</h1>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:36 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:58:48 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="ric_INSTALL.html">INSTALL</a></p>
<p><a href="ric_README.html">README</a></p> <p><a href="ric_README.html">README</a></p>
<p><a href="ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="li_configuration.html">configuration</a><br /> <a href="li_configuration.html">configuration</a><br />
@ -56,7 +56,7 @@
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:36 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:58:48 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="ric_INSTALL.html">INSTALL</a></p>
<p><a href="ric_README.html">README</a></p> <p><a href="ric_README.html">README</a></p>
<p><a href="ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="li_configuration.html">configuration</a><br /> <a href="li_configuration.html">configuration</a><br />
@ -51,7 +51,7 @@
<h1>Class Trees for Package tests</h1> <h1>Class Trees for Package tests</h1>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:36 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:58:48 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="ric_INSTALL.html">INSTALL</a></p>
<p><a href="ric_README.html">README</a></p> <p><a href="ric_README.html">README</a></p>
<p><a href="ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="li_configuration.html">configuration</a><br /> <a href="li_configuration.html">configuration</a><br />
@ -49,6 +49,11 @@
<table cellpadding="10" cellspacing="0" width="100%" border="0"><tr><td valign="top"> <table cellpadding="10" cellspacing="0" width="100%" border="0"><tr><td valign="top">
<h1>Class Trees for Package tools</h1> <h1>Class Trees for Package tools</h1>
<hr />
<div class="classtree">Root class LAMTool</div><br />
<ul>
<li><a href="tools/LAMTool.html">LAMTool</a></li></ul>
<hr /> <hr />
<div class="classtree">Root class LdapExportInfo</div><br /> <div class="classtree">Root class LdapExportInfo</div><br />
<ul> <ul>
@ -65,7 +70,7 @@
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:36 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:58:48 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="ric_INSTALL.html">INSTALL</a></p>
<p><a href="ric_README.html">README</a></p> <p><a href="ric_README.html">README</a></p>
<p><a href="ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="li_configuration.html">configuration</a><br /> <a href="li_configuration.html">configuration</a><br />
@ -58,7 +58,7 @@
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:35 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:58:48 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
<p><a href="../ric_README.html">README</a></p> <p><a href="../ric_README.html">README</a></p>
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="../li_configuration.html">configuration</a><br /> <a href="../li_configuration.html">configuration</a><br />
@ -104,7 +104,6 @@ Source Location: /lib/config.inc<br /><br />
<li><a href="../configuration/LAMCfgMain.html#var$default">$default</a></li> <li><a href="../configuration/LAMCfgMain.html#var$default">$default</a></li>
<li><a href="../configuration/LAMCfgMain.html#var$logDestination">$logDestination</a></li> <li><a href="../configuration/LAMCfgMain.html#var$logDestination">$logDestination</a></li>
<li><a href="../configuration/LAMCfgMain.html#var$logLevel">$logLevel</a></li> <li><a href="../configuration/LAMCfgMain.html#var$logLevel">$logLevel</a></li>
<li><a href="../configuration/LAMCfgMain.html#var$password">$password</a></li>
<li><a href="../configuration/LAMCfgMain.html#var$sessionTimeout">$sessionTimeout</a></li> <li><a href="../configuration/LAMCfgMain.html#var$sessionTimeout">$sessionTimeout</a></li>
</ul> </ul>
</td> </td>
@ -113,8 +112,10 @@ Source Location: /lib/config.inc<br /><br />
<td valign="top"> <td valign="top">
<h3><a href="#class_methods">Methods</a></h3> <h3><a href="#class_methods">Methods</a></h3>
<ul> <ul>
<li><a href="../configuration/LAMCfgMain.html#methodLAMCfgMain">LAMCfgMain</a></li> <li><a href="../configuration/LAMCfgMain.html#method__construct">__construct</a></li>
<li><a href="../configuration/LAMCfgMain.html#methodcheckPassword">checkPassword</a></li>
<li><a href="../configuration/LAMCfgMain.html#methodsave">save</a></li> <li><a href="../configuration/LAMCfgMain.html#methodsave">save</a></li>
<li><a href="../configuration/LAMCfgMain.html#methodsetPassword">setPassword</a></li>
</ul> </ul>
</td> </td>
@ -134,7 +135,7 @@ Source Location: /lib/config.inc<br /><br />
<a name="class_details"></a> <a name="class_details"></a>
<h3>Class Details</h3> <h3>Class Details</h3>
<div class="tags"> <div class="tags">
[line 843]<br /> [line 882]<br />
This class manages config.cfg.<br /><br /></div><br /><br /> This class manages config.cfg.<br /><br /></div><br /><br />
<div class="top">[ <a href="#top">Top</a> ]</div><br /> <div class="top">[ <a href="#top">Top</a> ]</div><br />
@ -145,7 +146,7 @@ This class manages config.cfg.<br /><br /></div><br /><br />
<a name="var$allowedHosts"></a> <a name="var$allowedHosts"></a>
<p></p> <p></p>
<h4>$allowedHosts = <span class="value"></span></h4> <h4>$allowedHosts = <span class="value"></span></h4>
<p>[line 861]</p> <p>[line 900]</p>
list of hosts which may access LAM<br /><br /><br /><br /> list of hosts which may access LAM<br /><br /><br /><br />
<h4>Tags:</h4> <h4>Tags:</h4>
<div class="tags"> <div class="tags">
@ -169,7 +170,7 @@ This class manages config.cfg.<br /><br /></div><br /><br />
<a name="var$default"></a> <a name="var$default"></a>
<p></p> <p></p>
<h4>$default = <span class="value"></span></h4> <h4>$default = <span class="value"></span></h4>
<p>[line 846]</p> <p>[line 885]</p>
Default profile<br /><br /><br /><br /> Default profile<br /><br /><br /><br />
<h4>Tags:</h4> <h4>Tags:</h4>
<div class="tags"> <div class="tags">
@ -193,7 +194,7 @@ This class manages config.cfg.<br /><br /></div><br /><br />
<a name="var$logDestination"></a> <a name="var$logDestination"></a>
<p></p> <p></p>
<h4>$logDestination = <span class="value"></span></h4> <h4>$logDestination = <span class="value"></span></h4>
<p>[line 858]</p> <p>[line 897]</p>
log destination (&quot;SYSLOG&quot;:syslog, &quot;/...&quot;:file, &quot;NONE&quot;:none)<br /><br /><br /><br /> log destination (&quot;SYSLOG&quot;:syslog, &quot;/...&quot;:file, &quot;NONE&quot;:none)<br /><br /><br /><br />
<h4>Tags:</h4> <h4>Tags:</h4>
<div class="tags"> <div class="tags">
@ -217,7 +218,7 @@ This class manages config.cfg.<br /><br /></div><br /><br />
<a name="var$logLevel"></a> <a name="var$logLevel"></a>
<p></p> <p></p>
<h4>$logLevel = <span class="value"></span></h4> <h4>$logLevel = <span class="value"></span></h4>
<p>[line 855]</p> <p>[line 894]</p>
log level<br /><br /><br /><br /> log level<br /><br /><br /><br />
<h4>Tags:</h4> <h4>Tags:</h4>
<div class="tags"> <div class="tags">
@ -226,30 +227,6 @@ This class manages config.cfg.<br /><br /></div><br /><br />
<td><b>access:</b>&nbsp;&nbsp;</td><td>public</td> <td><b>access:</b>&nbsp;&nbsp;</td><td>public</td>
</tr> </tr>
</table> </table>
</div>
<br />
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>Type:</b>&nbsp;&nbsp;</td>
<td>mixed</td>
</tr>
</table>
</div><br /><br />
<div class="top">[ <a href="#top">Top</a> ]</div><br />
<a name="var$password"></a>
<p></p>
<h4>$password = <span class="value"></span></h4>
<p>[line 849]</p>
Password to change config.cfg<br /><br /><br /><br />
<h4>Tags:</h4>
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>access:</b>&nbsp;&nbsp;</td><td>public</td>
</tr>
</table>
</div> </div>
<br /> <br />
@ -265,7 +242,7 @@ This class manages config.cfg.<br /><br /></div><br /><br />
<a name="var$sessionTimeout"></a> <a name="var$sessionTimeout"></a>
<p></p> <p></p>
<h4>$sessionTimeout = <span class="value"></span></h4> <h4>$sessionTimeout = <span class="value"></span></h4>
<p>[line 852]</p> <p>[line 891]</p>
Time of inactivity before session times out (minutes)<br /><br /><br /><br /> Time of inactivity before session times out (minutes)<br /><br /><br /><br />
<h4>Tags:</h4> <h4>Tags:</h4>
<div class="tags"> <div class="tags">
@ -294,12 +271,12 @@ This class manages config.cfg.<br /><br /></div><br /><br />
<div class="tags"> <div class="tags">
<hr /> <hr />
<a name="methodLAMCfgMain"></a> <a name="method__construct"></a>
<h3>constructor LAMCfgMain <span class="smalllinenumber">[line 870]</span></h3> <h3>constructor __construct <span class="smalllinenumber">[line 909]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
<code>LAMCfgMain LAMCfgMain( <code>LAMCfgMain __construct(
)</code> )</code>
</td></tr></table> </td></tr></table>
</td></tr></table><br /> </td></tr></table><br />
@ -309,9 +286,48 @@ This class manages config.cfg.<br /><br /></div><br /><br />
<div class="top">[ <a href="#top">Top</a> ]</div> <div class="top">[ <a href="#top">Top</a> ]</div>
</div> </div>
<hr />
<a name="methodcheckPassword"></a>
<h3>method checkPassword <span class="smalllinenumber">[line 1014]</span></h3>
<div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
<code>boolean checkPassword(
String
$password)</code>
</td></tr></table>
</td></tr></table><br />
Checks if the given password matches.<br /><br /><br /><br />
<h4>Tags:</h4>
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>return:</b>&nbsp;&nbsp;</td><td>true, if password matches</td>
</tr>
<tr>
<td><b>access:</b>&nbsp;&nbsp;</td><td>public</td>
</tr>
</table>
</div>
<br /><br />
<h4>Parameters:</h4>
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="type">String&nbsp;&nbsp;</td>
<td><b>$password</b>&nbsp;&nbsp;</td>
<td>password</td>
</tr>
</table>
</div><br />
<div class="top">[ <a href="#top">Top</a> ]</div>
</div>
<hr /> <hr />
<a name="methodsave"></a> <a name="methodsave"></a>
<h3>method save <span class="smalllinenumber">[line 911]</span></h3> <h3>method save <span class="smalllinenumber">[line 950]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -332,6 +348,42 @@ This class manages config.cfg.<br /><br /></div><br /><br />
<br /><br /> <br /><br />
<div class="top">[ <a href="#top">Top</a> ]</div>
</div>
<hr />
<a name="methodsetPassword"></a>
<h3>method setPassword <span class="smalllinenumber">[line 1000]</span></h3>
<div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
<code>void setPassword(
String
$password)</code>
</td></tr></table>
</td></tr></table><br />
Sets a new config password.<br /><br /><br /><br />
<h4>Tags:</h4>
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>access:</b>&nbsp;&nbsp;</td><td>public</td>
</tr>
</table>
</div>
<br /><br />
<h4>Parameters:</h4>
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="type">String&nbsp;&nbsp;</td>
<td><b>$password</b>&nbsp;&nbsp;</td>
<td>new password</td>
</tr>
</table>
</div><br />
<div class="top">[ <a href="#top">Top</a> ]</div> <div class="top">[ <a href="#top">Top</a> ]</div>
</div> </div>
</div><br /> </div><br />
@ -339,7 +391,7 @@ This class manages config.cfg.<br /><br /></div><br /><br />
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:41 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:58:55 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
<p><a href="../ric_README.html">README</a></p> <p><a href="../ric_README.html">README</a></p>
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="../li_configuration.html">configuration</a><br /> <a href="../li_configuration.html">configuration</a><br />
@ -97,31 +97,23 @@ Source Location: /lib/config.inc<br /><br />
</td> </td>
<td valign="top"> <td valign="top">
<h3><a href="#class_vars">Variables</a></h3> <h3><a href="#class_consts">Constants</a></h3>
<ul> <ul>
<li><a href="../configuration/LAMConfig.html#var$activeTypes">$activeTypes</a></li> <li><a href="../configuration/LAMConfig.html#constACCESS_ALL">ACCESS_ALL</a></li>
<li><a href="../configuration/LAMConfig.html#var$Admins">$Admins</a></li> <li><a href="../configuration/LAMConfig.html#constACCESS_PASSWORD_CHANGE">ACCESS_PASSWORD_CHANGE</a></li>
<li><a href="../configuration/LAMConfig.html#var$cachetimeout">$cachetimeout</a></li> <li><a href="../configuration/LAMConfig.html#constACCESS_READ_ONLY">ACCESS_READ_ONLY</a></li>
<li><a href="../configuration/LAMConfig.html#var$defaultLanguage">$defaultLanguage</a></li>
<li><a href="../configuration/LAMConfig.html#var$file">$file</a></li>
<li><a href="../configuration/LAMConfig.html#var$maxlistentries">$maxlistentries</a></li>
<li><a href="../configuration/LAMConfig.html#var$moduleSettings">$moduleSettings</a></li>
<li><a href="../configuration/LAMConfig.html#var$Passwd">$Passwd</a></li>
<li><a href="../configuration/LAMConfig.html#var$scriptPath">$scriptPath</a></li>
<li><a href="../configuration/LAMConfig.html#var$scriptRights">$scriptRights</a></li>
<li><a href="../configuration/LAMConfig.html#var$scriptServer">$scriptServer</a></li>
<li><a href="../configuration/LAMConfig.html#var$ServerURL">$ServerURL</a></li>
<li><a href="../configuration/LAMConfig.html#var$treesuffix">$treesuffix</a></li>
<li><a href="../configuration/LAMConfig.html#var$typeSettings">$typeSettings</a></li>
</ul> </ul>
</td> </td>
<td valign="top"> <td valign="top">
<h3><a href="#class_methods">Methods</a></h3> <h3><a href="#class_methods">Methods</a></h3>
<ul> <ul>
<li><a href="../configuration/LAMConfig.html#methodLAMConfig">LAMConfig</a></li> <li><a href="../configuration/LAMConfig.html#method__construct">__construct</a></li>
<li><a href="../configuration/LAMConfig.html#methodcheck_Passwd">check_Passwd</a></li>
<li><a href="../configuration/LAMConfig.html#methodgetAccessLevel">getAccessLevel</a></li>
<li><a href="../configuration/LAMConfig.html#methodgetName">getName</a></li>
<li><a href="../configuration/LAMConfig.html#methodget_AccountModules">get_AccountModules</a></li> <li><a href="../configuration/LAMConfig.html#methodget_AccountModules">get_AccountModules</a></li>
<li><a href="../configuration/LAMConfig.html#methodget_ActiveTypes">get_ActiveTypes</a></li> <li><a href="../configuration/LAMConfig.html#methodget_ActiveTypes">get_ActiveTypes</a></li>
<li><a href="../configuration/LAMConfig.html#methodget_Admins">get_Admins</a></li> <li><a href="../configuration/LAMConfig.html#methodget_Admins">get_Admins</a></li>
@ -130,9 +122,7 @@ Source Location: /lib/config.inc<br /><br />
<li><a href="../configuration/LAMConfig.html#methodget_cacheTimeoutSec">get_cacheTimeoutSec</a></li> <li><a href="../configuration/LAMConfig.html#methodget_cacheTimeoutSec">get_cacheTimeoutSec</a></li>
<li><a href="../configuration/LAMConfig.html#methodget_defaultLanguage">get_defaultLanguage</a></li> <li><a href="../configuration/LAMConfig.html#methodget_defaultLanguage">get_defaultLanguage</a></li>
<li><a href="../configuration/LAMConfig.html#methodget_listAttributes">get_listAttributes</a></li> <li><a href="../configuration/LAMConfig.html#methodget_listAttributes">get_listAttributes</a></li>
<li><a href="../configuration/LAMConfig.html#methodget_MaxListEntries">get_MaxListEntries</a></li>
<li><a href="../configuration/LAMConfig.html#methodget_moduleSettings">get_moduleSettings</a></li> <li><a href="../configuration/LAMConfig.html#methodget_moduleSettings">get_moduleSettings</a></li>
<li><a href="../configuration/LAMConfig.html#methodget_Passwd">get_Passwd</a></li>
<li><a href="../configuration/LAMConfig.html#methodget_scriptPath">get_scriptPath</a></li> <li><a href="../configuration/LAMConfig.html#methodget_scriptPath">get_scriptPath</a></li>
<li><a href="../configuration/LAMConfig.html#methodget_scriptRights">get_scriptRights</a></li> <li><a href="../configuration/LAMConfig.html#methodget_scriptRights">get_scriptRights</a></li>
<li><a href="../configuration/LAMConfig.html#methodget_scriptServers">get_scriptServers</a></li> <li><a href="../configuration/LAMConfig.html#methodget_scriptServers">get_scriptServers</a></li>
@ -141,13 +131,13 @@ Source Location: /lib/config.inc<br /><br />
<li><a href="../configuration/LAMConfig.html#methodget_typeSettings">get_typeSettings</a></li> <li><a href="../configuration/LAMConfig.html#methodget_typeSettings">get_typeSettings</a></li>
<li><a href="../configuration/LAMConfig.html#methodisWritable">isWritable</a></li> <li><a href="../configuration/LAMConfig.html#methodisWritable">isWritable</a></li>
<li><a href="../configuration/LAMConfig.html#methodsave">save</a></li> <li><a href="../configuration/LAMConfig.html#methodsave">save</a></li>
<li><a href="../configuration/LAMConfig.html#methodsetAccessLevel">setAccessLevel</a></li>
<li><a href="../configuration/LAMConfig.html#methodset_AccountModules">set_AccountModules</a></li> <li><a href="../configuration/LAMConfig.html#methodset_AccountModules">set_AccountModules</a></li>
<li><a href="../configuration/LAMConfig.html#methodset_ActiveTypes">set_ActiveTypes</a></li> <li><a href="../configuration/LAMConfig.html#methodset_ActiveTypes">set_ActiveTypes</a></li>
<li><a href="../configuration/LAMConfig.html#methodset_Adminstring">set_Adminstring</a></li> <li><a href="../configuration/LAMConfig.html#methodset_Adminstring">set_Adminstring</a></li>
<li><a href="../configuration/LAMConfig.html#methodset_cacheTimeout">set_cacheTimeout</a></li> <li><a href="../configuration/LAMConfig.html#methodset_cacheTimeout">set_cacheTimeout</a></li>
<li><a href="../configuration/LAMConfig.html#methodset_defaultLanguage">set_defaultLanguage</a></li> <li><a href="../configuration/LAMConfig.html#methodset_defaultLanguage">set_defaultLanguage</a></li>
<li><a href="../configuration/LAMConfig.html#methodset_listAttributes">set_listAttributes</a></li> <li><a href="../configuration/LAMConfig.html#methodset_listAttributes">set_listAttributes</a></li>
<li><a href="../configuration/LAMConfig.html#methodset_MaxListEntries">set_MaxListEntries</a></li>
<li><a href="../configuration/LAMConfig.html#methodset_moduleSettings">set_moduleSettings</a></li> <li><a href="../configuration/LAMConfig.html#methodset_moduleSettings">set_moduleSettings</a></li>
<li><a href="../configuration/LAMConfig.html#methodset_Passwd">set_Passwd</a></li> <li><a href="../configuration/LAMConfig.html#methodset_Passwd">set_Passwd</a></li>
<li><a href="../configuration/LAMConfig.html#methodset_scriptPath">set_scriptPath</a></li> <li><a href="../configuration/LAMConfig.html#methodset_scriptPath">set_scriptPath</a></li>
@ -179,221 +169,6 @@ Source Location: /lib/config.inc<br /><br />
This class manages .conf files.<br /><br /></div><br /><br /> This class manages .conf files.<br /><br /></div><br /><br />
<div class="top">[ <a href="#top">Top</a> ]</div><br /> <div class="top">[ <a href="#top">Top</a> ]</div><br />
<hr />
<a name="class_vars"></a>
<h3>Class Variables</h3>
<div class="tags">
<a name="var$activeTypes"></a>
<p></p>
<h4>$activeTypes = <span class="value">&nbsp;&quot;user,group,host,smbDomain&quot;</span></h4>
<p>[line 215]</p>
Active account types<br /><br />
<br />
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>Type:</b>&nbsp;&nbsp;</td>
<td>mixed</td>
</tr>
</table>
</div><br /><br />
<div class="top">[ <a href="#top">Top</a> ]</div><br />
<a name="var$Admins"></a>
<p></p>
<h4>$Admins = <span class="value"></span></h4>
<p>[line 170]</p>
Array of string: users with admin rights<br /><br />
<br />
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>Type:</b>&nbsp;&nbsp;</td>
<td>mixed</td>
</tr>
</table>
</div><br /><br />
<div class="top">[ <a href="#top">Top</a> ]</div><br />
<a name="var$cachetimeout"></a>
<p></p>
<h4>$cachetimeout = <span class="value"></span></h4>
<p>[line 212]</p>
LDAP cache timeout<br /><br />
<br />
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>Type:</b>&nbsp;&nbsp;</td>
<td>mixed</td>
</tr>
</table>
</div><br /><br />
<div class="top">[ <a href="#top">Top</a> ]</div><br />
<a name="var$defaultLanguage"></a>
<p></p>
<h4>$defaultLanguage = <span class="value"></span></h4>
<p>[line 182]</p>
Default language<br /><br />
<br />
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>Type:</b>&nbsp;&nbsp;</td>
<td>mixed</td>
</tr>
</table>
</div><br /><br />
<div class="top">[ <a href="#top">Top</a> ]</div><br />
<a name="var$file"></a>
<p></p>
<h4>$file = <span class="value"></span></h4>
<p>[line 218]</p>
Name of configuration file<br /><br />
<br />
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>Type:</b>&nbsp;&nbsp;</td>
<td>mixed</td>
</tr>
</table>
</div><br /><br />
<div class="top">[ <a href="#top">Top</a> ]</div><br />
<a name="var$maxlistentries"></a>
<p></p>
<h4>$maxlistentries = <span class="value"></span></h4>
<p>[line 179]</p>
Maximum number of rows shown in user/group/host lists<br /><br />
<br />
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>Type:</b>&nbsp;&nbsp;</td>
<td>mixed</td>
</tr>
</table>
</div><br /><br />
<div class="top">[ <a href="#top">Top</a> ]</div><br />
<a name="var$moduleSettings"></a>
<p></p>
<h4>$moduleSettings = <span class="value">array()</span></h4>
<p>[line 185]</p>
module settings<br /><br />
<br />
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>Type:</b>&nbsp;&nbsp;</td>
<td>mixed</td>
</tr>
</table>
</div><br /><br />
<div class="top">[ <a href="#top">Top</a> ]</div><br />
<a name="var$Passwd"></a>
<p></p>
<h4>$Passwd = <span class="value"></span></h4>
<p>[line 173]</p>
Password to edit preferences<br /><br />
<br />
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>Type:</b>&nbsp;&nbsp;</td>
<td>mixed</td>
</tr>
</table>
</div><br /><br />
<div class="top">[ <a href="#top">Top</a> ]</div><br />
<a name="var$scriptPath"></a>
<p></p>
<h4>$scriptPath = <span class="value"></span></h4>
<p>[line 196]</p>
Path to external lamdaemon script on server where it is executed<br /><br /><p>This is used for managing quota and home directories. optional setting, may not be defined</p><br />
<br />
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>Type:</b>&nbsp;&nbsp;</td>
<td>mixed</td>
</tr>
</table>
</div><br /><br />
<div class="top">[ <a href="#top">Top</a> ]</div><br />
<a name="var$scriptRights"></a>
<p></p>
<h4>$scriptRights = <span class="value"></span></h4>
<p>[line 201]</p>
The rights for the home directory<br /><br />
<br />
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>Type:</b>&nbsp;&nbsp;</td>
<td>mixed</td>
</tr>
</table>
</div><br /><br />
<div class="top">[ <a href="#top">Top</a> ]</div><br />
<a name="var$scriptServer"></a>
<p></p>
<h4>$scriptServer = <span class="value"></span></h4>
<p>[line 209]</p>
Servers where lamdaemon script is executed<br /><br /><p>This is used for managing quota and home directories. optional setting, may not be defined</p><br />
<br />
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>Type:</b>&nbsp;&nbsp;</td>
<td>mixed</td>
</tr>
</table>
</div><br /><br />
<div class="top">[ <a href="#top">Top</a> ]</div><br />
<a name="var$ServerURL"></a>
<p></p>
<h4>$ServerURL = <span class="value"></span></h4>
<p>[line 167]</p>
Server address (e.g. ldap://127.0.0.1:389)<br /><br />
<br />
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>Type:</b>&nbsp;&nbsp;</td>
<td>mixed</td>
</tr>
</table>
</div><br /><br />
<div class="top">[ <a href="#top">Top</a> ]</div><br />
<a name="var$treesuffix"></a>
<p></p>
<h4>$treesuffix = <span class="value"></span></h4>
<p>[line 176]</p>
LDAP suffix for tree view<br /><br />
<br />
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>Type:</b>&nbsp;&nbsp;</td>
<td>mixed</td>
</tr>
</table>
</div><br /><br />
<div class="top">[ <a href="#top">Top</a> ]</div><br />
<a name="var$typeSettings"></a>
<p></p>
<h4>$typeSettings = <span class="value">array()</span></h4>
<p>[line 188]</p>
type settings<br /><br />
<br />
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>Type:</b>&nbsp;&nbsp;</td>
<td>mixed</td>
</tr>
</table>
</div><br /><br />
<div class="top">[ <a href="#top">Top</a> ]</div><br />
</div><br />
<hr /> <hr />
<a name="class_methods"></a> <a name="class_methods"></a>
@ -401,12 +176,12 @@ This class manages .conf files.<br /><br /></div><br /><br />
<div class="tags"> <div class="tags">
<hr /> <hr />
<a name="methodLAMConfig"></a> <a name="method__construct"></a>
<h3>constructor LAMConfig <span class="smalllinenumber">[line 231]</span></h3> <h3>constructor __construct <span class="smalllinenumber">[line 234]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
<code>LAMConfig LAMConfig( <code>LAMConfig __construct(
[integer [integer
$file = 0])</code> $file = 0])</code>
</td></tr></table> </td></tr></table>
@ -427,9 +202,104 @@ $file = 0])</code>
</div><br /> </div><br />
<div class="top">[ <a href="#top">Top</a> ]</div> <div class="top">[ <a href="#top">Top</a> ]</div>
</div> </div>
<hr />
<a name="methodcheck_Passwd"></a>
<h3>method check_Passwd <span class="smalllinenumber">[line 487]</span></h3>
<div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
<code>boolean check_Passwd(
String
$password)</code>
</td></tr></table>
</td></tr></table><br />
Checks if the given password matches.<br /><br /><br /><br />
<h4>Tags:</h4>
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>return:</b>&nbsp;&nbsp;</td><td>true, if matches</td>
</tr>
<tr>
<td><b>access:</b>&nbsp;&nbsp;</td><td>public</td>
</tr>
</table>
</div>
<br /><br />
<h4>Parameters:</h4>
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="type">String&nbsp;&nbsp;</td>
<td><b>$password</b>&nbsp;&nbsp;</td>
<td></td>
</tr>
</table>
</div><br />
<div class="top">[ <a href="#top">Top</a> ]</div>
</div>
<hr />
<a name="methodgetAccessLevel"></a>
<h3>method getAccessLevel <span class="smalllinenumber">[line 861]</span></h3>
<div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
<code>int getAccessLevel(
)</code>
</td></tr></table>
</td></tr></table><br />
Returns the access level for this profile.<br /><br /><br /><br />
<h4>Tags:</h4>
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>return:</b>&nbsp;&nbsp;</td><td>level</td>
</tr>
<tr>
<td><b>access:</b>&nbsp;&nbsp;</td><td>public</td>
</tr>
</table>
</div>
<br /><br />
<div class="top">[ <a href="#top">Top</a> ]</div>
</div>
<hr />
<a name="methodgetName"></a>
<h3>method getName <span class="smalllinenumber">[line 403]</span></h3>
<div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
<code>String getName(
)</code>
</td></tr></table>
</td></tr></table><br />
Returns the name of the config file<br /><br /><br /><br />
<h4>Tags:</h4>
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>return:</b>&nbsp;&nbsp;</td><td>name</td>
</tr>
<tr>
<td><b>access:</b>&nbsp;&nbsp;</td><td>public</td>
</tr>
</table>
</div>
<br /><br />
<div class="top">[ <a href="#top">Top</a> ]</div>
</div>
<hr /> <hr />
<a name="methodget_AccountModules"></a> <a name="methodget_AccountModules"></a>
<h3>method get_AccountModules <span class="smalllinenumber">[line 744]</span></h3> <h3>method get_AccountModules <span class="smalllinenumber">[line 765]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -468,7 +338,7 @@ $scope)</code>
</div> </div>
<hr /> <hr />
<a name="methodget_ActiveTypes"></a> <a name="methodget_ActiveTypes"></a>
<h3>method get_ActiveTypes <span class="smalllinenumber">[line 800]</span></h3> <h3>method get_ActiveTypes <span class="smalllinenumber">[line 821]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -496,7 +366,7 @@ $scope)</code>
</div> </div>
<hr /> <hr />
<a name="methodget_Admins"></a> <a name="methodget_Admins"></a>
<h3>method get_Admins <span class="smalllinenumber">[line 441]</span></h3> <h3>method get_Admins <span class="smalllinenumber">[line 453]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -524,7 +394,7 @@ $scope)</code>
</div> </div>
<hr /> <hr />
<a name="methodget_Adminstring"></a> <a name="methodget_Adminstring"></a>
<h3>method get_Adminstring <span class="smalllinenumber">[line 450]</span></h3> <h3>method get_Adminstring <span class="smalllinenumber">[line 462]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -552,7 +422,7 @@ $scope)</code>
</div> </div>
<hr /> <hr />
<a name="methodget_cacheTimeout"></a> <a name="methodget_cacheTimeout"></a>
<h3>method get_cacheTimeout <span class="smalllinenumber">[line 710]</span></h3> <h3>method get_cacheTimeout <span class="smalllinenumber">[line 731]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -580,7 +450,7 @@ $scope)</code>
</div> </div>
<hr /> <hr />
<a name="methodget_cacheTimeoutSec"></a> <a name="methodget_cacheTimeoutSec"></a>
<h3>method get_cacheTimeoutSec <span class="smalllinenumber">[line 720]</span></h3> <h3>method get_cacheTimeoutSec <span class="smalllinenumber">[line 741]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -608,7 +478,7 @@ $scope)</code>
</div> </div>
<hr /> <hr />
<a name="methodget_defaultLanguage"></a> <a name="methodget_defaultLanguage"></a>
<h3>method get_defaultLanguage <span class="smalllinenumber">[line 579]</span></h3> <h3>method get_defaultLanguage <span class="smalllinenumber">[line 600]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -636,7 +506,7 @@ $scope)</code>
</div> </div>
<hr /> <hr />
<a name="methodget_listAttributes"></a> <a name="methodget_listAttributes"></a>
<h3>method get_listAttributes <span class="smalllinenumber">[line 532]</span></h3> <h3>method get_listAttributes <span class="smalllinenumber">[line 574]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -673,37 +543,9 @@ $scope)</code>
</div><br /> </div><br />
<div class="top">[ <a href="#top">Top</a> ]</div> <div class="top">[ <a href="#top">Top</a> ]</div>
</div> </div>
<hr />
<a name="methodget_MaxListEntries"></a>
<h3>method get_MaxListEntries <span class="smalllinenumber">[line 558]</span></h3>
<div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
<code>integer get_MaxListEntries(
)</code>
</td></tr></table>
</td></tr></table><br />
Returns the maximum number of rows in user/group/host lists<br /><br /><br /><br />
<h4>Tags:</h4>
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>return:</b>&nbsp;&nbsp;</td><td>maximum number</td>
</tr>
<tr>
<td><b>access:</b>&nbsp;&nbsp;</td><td>public</td>
</tr>
</table>
</div>
<br /><br />
<div class="top">[ <a href="#top">Top</a> ]</div>
</div>
<hr /> <hr />
<a name="methodget_moduleSettings"></a> <a name="methodget_moduleSettings"></a>
<h3>method get_moduleSettings <span class="smalllinenumber">[line 791]</span></h3> <h3>method get_moduleSettings <span class="smalllinenumber">[line 812]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -727,39 +569,11 @@ $scope)</code>
<br /><br /> <br /><br />
<div class="top">[ <a href="#top">Top</a> ]</div>
</div>
<hr />
<a name="methodget_Passwd"></a>
<h3>method get_Passwd <span class="smalllinenumber">[line 474]</span></h3>
<div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
<code>string get_Passwd(
)</code>
</td></tr></table>
</td></tr></table><br />
Returns the password to access the preferences wizard<br /><br /><br /><br />
<h4>Tags:</h4>
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>return:</b>&nbsp;&nbsp;</td><td>the password</td>
</tr>
<tr>
<td><b>access:</b>&nbsp;&nbsp;</td><td>public</td>
</tr>
</table>
</div>
<br /><br />
<div class="top">[ <a href="#top">Top</a> ]</div> <div class="top">[ <a href="#top">Top</a> ]</div>
</div> </div>
<hr /> <hr />
<a name="methodget_scriptPath"></a> <a name="methodget_scriptPath"></a>
<h3>method get_scriptPath <span class="smalllinenumber">[line 600]</span></h3> <h3>method get_scriptPath <span class="smalllinenumber">[line 621]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -787,7 +601,7 @@ $scope)</code>
</div> </div>
<hr /> <hr />
<a name="methodget_scriptRights"></a> <a name="methodget_scriptRights"></a>
<h3>method get_scriptRights <span class="smalllinenumber">[line 683]</span></h3> <h3>method get_scriptRights <span class="smalllinenumber">[line 704]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -815,7 +629,7 @@ $scope)</code>
</div> </div>
<hr /> <hr />
<a name="methodget_scriptServers"></a> <a name="methodget_scriptServers"></a>
<h3>method get_scriptServers <span class="smalllinenumber">[line 622]</span></h3> <h3>method get_scriptServers <span class="smalllinenumber">[line 643]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -843,7 +657,7 @@ $scope)</code>
</div> </div>
<hr /> <hr />
<a name="methodget_ServerURL"></a> <a name="methodget_ServerURL"></a>
<h3>method get_ServerURL <span class="smalllinenumber">[line 420]</span></h3> <h3>method get_ServerURL <span class="smalllinenumber">[line 432]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -871,7 +685,7 @@ $scope)</code>
</div> </div>
<hr /> <hr />
<a name="methodget_Suffix"></a> <a name="methodget_Suffix"></a>
<h3>method get_Suffix <span class="smalllinenumber">[line 496]</span></h3> <h3>method get_Suffix <span class="smalllinenumber">[line 538]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -910,7 +724,7 @@ $scope)</code>
</div> </div>
<hr /> <hr />
<a name="methodget_typeSettings"></a> <a name="methodget_typeSettings"></a>
<h3>method get_typeSettings <span class="smalllinenumber">[line 831]</span></h3> <h3>method get_typeSettings <span class="smalllinenumber">[line 852]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -938,7 +752,7 @@ $scope)</code>
</div> </div>
<hr /> <hr />
<a name="methodisWritable"></a> <a name="methodisWritable"></a>
<h3>method isWritable <span class="smalllinenumber">[line 400]</span></h3> <h3>method isWritable <span class="smalllinenumber">[line 412]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -966,7 +780,7 @@ $scope)</code>
</div> </div>
<hr /> <hr />
<a name="methodsave"></a> <a name="methodsave"></a>
<h3>method save <span class="smalllinenumber">[line 304]</span></h3> <h3>method save <span class="smalllinenumber">[line 307]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -989,9 +803,45 @@ $scope)</code>
<div class="top">[ <a href="#top">Top</a> ]</div> <div class="top">[ <a href="#top">Top</a> ]</div>
</div> </div>
<hr />
<a name="methodsetAccessLevel"></a>
<h3>method setAccessLevel <span class="smalllinenumber">[line 870]</span></h3>
<div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
<code>void setAccessLevel(
int
$level)</code>
</td></tr></table>
</td></tr></table><br />
Sets the access level for this profile.<br /><br /><br /><br />
<h4>Tags:</h4>
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>access:</b>&nbsp;&nbsp;</td><td>public</td>
</tr>
</table>
</div>
<br /><br />
<h4>Parameters:</h4>
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="type">int&nbsp;&nbsp;</td>
<td><b>$level</b>&nbsp;&nbsp;</td>
<td>level</td>
</tr>
</table>
</div><br />
<div class="top">[ <a href="#top">Top</a> ]</div>
</div>
<hr /> <hr />
<a name="methodset_AccountModules"></a> <a name="methodset_AccountModules"></a>
<h3>method set_AccountModules <span class="smalllinenumber">[line 760]</span></h3> <h3>method set_AccountModules <span class="smalllinenumber">[line 781]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -1036,7 +886,7 @@ $scope)</code>
</div> </div>
<hr /> <hr />
<a name="methodset_ActiveTypes"></a> <a name="methodset_ActiveTypes"></a>
<h3>method set_ActiveTypes <span class="smalllinenumber">[line 810]</span></h3> <h3>method set_ActiveTypes <span class="smalllinenumber">[line 831]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -1072,7 +922,7 @@ $types)</code>
</div> </div>
<hr /> <hr />
<a name="methodset_Adminstring"></a> <a name="methodset_Adminstring"></a>
<h3>method set_Adminstring <span class="smalllinenumber">[line 460]</span></h3> <h3>method set_Adminstring <span class="smalllinenumber">[line 472]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -1111,7 +961,7 @@ $value)</code>
</div> </div>
<hr /> <hr />
<a name="methodset_cacheTimeout"></a> <a name="methodset_cacheTimeout"></a>
<h3>method set_cacheTimeout <span class="smalllinenumber">[line 730]</span></h3> <h3>method set_cacheTimeout <span class="smalllinenumber">[line 751]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -1150,7 +1000,7 @@ $value)</code>
</div> </div>
<hr /> <hr />
<a name="methodset_defaultLanguage"></a> <a name="methodset_defaultLanguage"></a>
<h3>method set_defaultLanguage <span class="smalllinenumber">[line 589]</span></h3> <h3>method set_defaultLanguage <span class="smalllinenumber">[line 610]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -1189,7 +1039,7 @@ $value)</code>
</div> </div>
<hr /> <hr />
<a name="methodset_listAttributes"></a> <a name="methodset_listAttributes"></a>
<h3>method set_listAttributes <span class="smalllinenumber">[line 543]</span></h3> <h3>method set_listAttributes <span class="smalllinenumber">[line 585]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -1232,48 +1082,9 @@ $scope)</code>
</div><br /> </div><br />
<div class="top">[ <a href="#top">Top</a> ]</div> <div class="top">[ <a href="#top">Top</a> ]</div>
</div> </div>
<hr />
<a name="methodset_MaxListEntries"></a>
<h3>method set_MaxListEntries <span class="smalllinenumber">[line 568]</span></h3>
<div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
<code>boolean set_MaxListEntries(
integer
$value)</code>
</td></tr></table>
</td></tr></table><br />
Sets the maximum number of rows in user/group/host lists<br /><br /><br /><br />
<h4>Tags:</h4>
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><b>return:</b>&nbsp;&nbsp;</td><td>true if $value has correct format</td>
</tr>
<tr>
<td><b>access:</b>&nbsp;&nbsp;</td><td>public</td>
</tr>
</table>
</div>
<br /><br />
<h4>Parameters:</h4>
<div class="tags">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="type">integer&nbsp;&nbsp;</td>
<td><b>$value</b>&nbsp;&nbsp;</td>
<td>new maximum value</td>
</tr>
</table>
</div><br />
<div class="top">[ <a href="#top">Top</a> ]</div>
</div>
<hr /> <hr />
<a name="methodset_moduleSettings"></a> <a name="methodset_moduleSettings"></a>
<h3>method set_moduleSettings <span class="smalllinenumber">[line 780]</span></h3> <h3>method set_moduleSettings <span class="smalllinenumber">[line 801]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -1312,7 +1123,7 @@ $settings)</code>
</div> </div>
<hr /> <hr />
<a name="methodset_Passwd"></a> <a name="methodset_Passwd"></a>
<h3>method set_Passwd <span class="smalllinenumber">[line 484]</span></h3> <h3>method set_Passwd <span class="smalllinenumber">[line 507]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -1351,7 +1162,7 @@ $value)</code>
</div> </div>
<hr /> <hr />
<a name="methodset_scriptPath"></a> <a name="methodset_scriptPath"></a>
<h3>method set_scriptPath <span class="smalllinenumber">[line 610]</span></h3> <h3>method set_scriptPath <span class="smalllinenumber">[line 631]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -1390,7 +1201,7 @@ $value)</code>
</div> </div>
<hr /> <hr />
<a name="methodset_scriptRights"></a> <a name="methodset_scriptRights"></a>
<h3>method set_scriptRights <span class="smalllinenumber">[line 694]</span></h3> <h3>method set_scriptRights <span class="smalllinenumber">[line 715]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -1429,7 +1240,7 @@ $chmod)</code>
</div> </div>
<hr /> <hr />
<a name="methodset_scriptServers"></a> <a name="methodset_scriptServers"></a>
<h3>method set_scriptServers <span class="smalllinenumber">[line 632]</span></h3> <h3>method set_scriptServers <span class="smalllinenumber">[line 653]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -1468,7 +1279,7 @@ $value)</code>
</div> </div>
<hr /> <hr />
<a name="methodset_ServerURL"></a> <a name="methodset_ServerURL"></a>
<h3>method set_ServerURL <span class="smalllinenumber">[line 430]</span></h3> <h3>method set_ServerURL <span class="smalllinenumber">[line 442]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -1507,7 +1318,7 @@ $value)</code>
</div> </div>
<hr /> <hr />
<a name="methodset_Suffix"></a> <a name="methodset_Suffix"></a>
<h3>method set_Suffix <span class="smalllinenumber">[line 512]</span></h3> <h3>method set_Suffix <span class="smalllinenumber">[line 554]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -1552,7 +1363,7 @@ $value)</code>
</div> </div>
<hr /> <hr />
<a name="methodset_typeSettings"></a> <a name="methodset_typeSettings"></a>
<h3>method set_typeSettings <span class="smalllinenumber">[line 820]</span></h3> <h3>method set_typeSettings <span class="smalllinenumber">[line 841]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -1591,10 +1402,36 @@ $settings)</code>
</div> </div>
</div><br /> </div><br />
<hr />
<a name="class_constss"></a>
<h3>Class Constants</h3>
<div class="tags">
<a name="constACCESS_ALL"></a>
<p></p>
<h4>ACCESS_ALL = <span class="value">&nbsp;100</span></h4>
<p>[line 166]</p>
<br />
<div class="top">[ <a href="#top">Top</a> ]</div><br />
<a name="constACCESS_PASSWORD_CHANGE"></a>
<p></p>
<h4>ACCESS_PASSWORD_CHANGE = <span class="value">&nbsp;20</span></h4>
<p>[line 167]</p>
<br />
<div class="top">[ <a href="#top">Top</a> ]</div><br />
<a name="constACCESS_READ_ONLY"></a>
<p></p>
<h4>ACCESS_READ_ONLY = <span class="value">&nbsp;0</span></h4>
<p>[line 168]</p>
<br />
<div class="top">[ <a href="#top">Top</a> ]</div><br />
</div><br />
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:41 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:58:56 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
<p><a href="../ric_README.html">README</a></p> <p><a href="../ric_README.html">README</a></p>
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="../li_configuration.html">configuration</a><br /> <a href="../li_configuration.html">configuration</a><br />
@ -246,7 +246,7 @@ string $page)</code>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:41 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:58:55 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
<p><a href="../ric_README.html">README</a></p> <p><a href="../ric_README.html">README</a></p>
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="../li_configuration.html">configuration</a><br /> <a href="../li_configuration.html">configuration</a><br />
@ -107,7 +107,7 @@ Used to print status messages<br /><br /></div>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:43 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:58:57 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
<p><a href="../ric_README.html">README</a></p> <p><a href="../ric_README.html">README</a></p>
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="../li_configuration.html">configuration</a><br /> <a href="../li_configuration.html">configuration</a><br />
@ -103,15 +103,15 @@ Main page of configuration<br /><br /><br /><br />
<div class="tags"> <div class="tags">
include_once("../../lib/config.inc") [line 35]<br /> include_once("../../lib/config.inc") [line 35]<br />
Access to config functions<br /><br />include_once("../../lib/modules.inc") [line 38]<br /> Access to config functions<br /><br />include_once("../../lib/modules.inc") [line 38]<br />
access to module settings<br /><br />require(<a href="../configuration/_templates---config---conflogin.php.html">'conflogin.php'</a>) [line 73]<br /> access to module settings<br /><br />require(<a href="../configuration/_templates---config---conflogin.php.html">'conflogin.php'</a>) [line 72]<br />
go back to login if password is invalid<br /><br />require(<a href="../configuration/_templates---config---conflogin.php.html">'conflogin.php'</a>) [line 55]<br /> go back to login if password is invalid<br /><br />require(<a href="../configuration/_templates---config---conflogin.php.html">'conflogin.php'</a>) [line 54]<br />
go back to login if password is empty<br /><br /></div> go back to login if password is empty<br /><br /></div>
<br /><br /> <br /><br />
<br /><br /> <br /><br />
<br /> <br />
<hr /> <hr />
<a name="functionsaveSettings"></a> <a name="functionsaveSettings"></a>
<h3>saveSettings <span class="smalllinenumber">[line 463]</span></h3> <h3>saveSettings <span class="smalllinenumber">[line 481]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -127,7 +127,7 @@ go back to login if password is empty<br /><br /></div>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:43 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:58:57 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
<p><a href="../ric_README.html">README</a></p> <p><a href="../ric_README.html">README</a></p>
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="../li_configuration.html">configuration</a><br /> <a href="../li_configuration.html">configuration</a><br />
@ -107,7 +107,7 @@ go back to login if password is invalid<br /><br /></div>
<br /> <br />
<hr /> <hr />
<a name="functionconfig_showAccountModules"></a> <a name="functionconfig_showAccountModules"></a>
<h3>config_showAccountModules <span class="smalllinenumber">[line 138]</span></h3> <h3>config_showAccountModules <span class="smalllinenumber">[line 139]</span></h3>
<div class="function"> <div class="function">
<table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
<table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
@ -145,7 +145,7 @@ string $scope, string $title)</code>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:43 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:58:57 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
<p><a href="../ric_README.html">README</a></p> <p><a href="../ric_README.html">README</a></p>
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="../li_configuration.html">configuration</a><br /> <a href="../li_configuration.html">configuration</a><br />
@ -108,7 +108,7 @@ go back to login if password is invalid<br /><br /></div>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:43 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:58:57 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
<p><a href="../ric_README.html">README</a></p> <p><a href="../ric_README.html">README</a></p>
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="../li_configuration.html">configuration</a><br /> <a href="../li_configuration.html">configuration</a><br />
@ -106,7 +106,7 @@ Access to config functions<br /><br /></div>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:51 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:59:08 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
<p><a href="../ric_README.html">README</a></p> <p><a href="../ric_README.html">README</a></p>
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="../li_configuration.html">configuration</a><br /> <a href="../li_configuration.html">configuration</a><br />
@ -107,7 +107,7 @@ Used to print status messages<br /><br /></div>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:56 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:59:16 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
<p><a href="../ric_README.html">README</a></p> <p><a href="../ric_README.html">README</a></p>
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="../li_configuration.html">configuration</a><br /> <a href="../li_configuration.html">configuration</a><br />
@ -108,7 +108,7 @@ Used to print status messages<br /><br />require(<a href="../configuration/_temp
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:56 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:59:16 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -26,8 +26,8 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
<p><a href="../ric_README.html">README</a></p> <p><a href="../ric_README.html">README</a></p>
<p><a href="../ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="../li_configuration.html">configuration</a><br /> <a href="../li_configuration.html">configuration</a><br />
@ -107,7 +107,7 @@ Used to print status messages<br /><br /></div>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:11:02 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:59:22 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

File diff suppressed because it is too large Load Diff

View File

@ -13,8 +13,8 @@
<tr> <tr>
<td class="header_menu"> <td class="header_menu">
[ <a href="classtrees_Help.html" class="menu">class tree: Help</a> ] [ <a href="classtrees_Help.html" class="menu">class tree: Help</a> ]
[ <a href="elementindex_Help.html" class="menu">index: Help</a> ] [ <a href="elementindex_Help.html" class="menu">index: Help</a> ]
[ <a href="elementindex.html" class="menu">all elements</a> ] [ <a href="elementindex.html" class="menu">all elements</a> ]
</td> </td>
@ -26,23 +26,23 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="ric_INSTALL.html">INSTALL</a></p>
<p><a href="ric_README.html">README</a></p> <p><a href="ric_README.html">README</a></p>
<p><a href="ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="li_Help.html">Help</a><br />
<a href="li_PDF.html">PDF</a><br /> <a href="li_PDF.html">PDF</a><br />
<a href="li_lib.html">lib</a><br />
<a href="li_modules.html">modules</a><br />
<a href="li_types.html">types</a><br />
<a href="li_configuration.html">configuration</a><br />
<a href="li_tools.html">tools</a><br />
<a href="li_LDAP.html">LDAP</a><br />
<a href="li_lists.html">lists</a><br /> <a href="li_lists.html">lists</a><br />
<a href="li_profiles.html">profiles</a><br /> <a href="li_profiles.html">profiles</a><br />
<a href="li_LDAP.html">LDAP</a><br />
<a href="li_types.html">types</a><br />
<a href="li_lib.html">lib</a><br />
<a href="li_modules.html">modules</a><br />
<a href="li_selfService.html">selfService</a><br /> <a href="li_selfService.html">selfService</a><br />
<a href="li_main.html">main</a><br /> <a href="li_configuration.html">configuration</a><br />
<a href="li_tools.html">tools</a><br />
<a href="li_Help.html">Help</a><br />
<a href="li_tests.html">tests</a><br /> <a href="li_tests.html">tests</a><br />
<a href="li_main.html">main</a><br />
<br /><br /> <br /><br />
<b>Files:</b><br /> <b>Files:</b><br />
<div class="package"> <div class="package">
@ -100,7 +100,7 @@
<a href="elementindex_Help.html#top">top</a><br> <a href="elementindex_Help.html#top">top</a><br>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:35 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:58:47 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -13,8 +13,8 @@
<tr> <tr>
<td class="header_menu"> <td class="header_menu">
[ <a href="classtrees_LDAP.html" class="menu">class tree: LDAP</a> ] [ <a href="classtrees_LDAP.html" class="menu">class tree: LDAP</a> ]
[ <a href="elementindex_LDAP.html" class="menu">index: LDAP</a> ] [ <a href="elementindex_LDAP.html" class="menu">index: LDAP</a> ]
[ <a href="elementindex.html" class="menu">all elements</a> ] [ <a href="elementindex.html" class="menu">all elements</a> ]
</td> </td>
@ -26,23 +26,23 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="ric_INSTALL.html">INSTALL</a></p>
<p><a href="ric_README.html">README</a></p> <p><a href="ric_README.html">README</a></p>
<p><a href="ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="li_Help.html">Help</a><br />
<a href="li_PDF.html">PDF</a><br /> <a href="li_PDF.html">PDF</a><br />
<a href="li_lib.html">lib</a><br />
<a href="li_modules.html">modules</a><br />
<a href="li_types.html">types</a><br />
<a href="li_configuration.html">configuration</a><br />
<a href="li_tools.html">tools</a><br />
<a href="li_LDAP.html">LDAP</a><br />
<a href="li_lists.html">lists</a><br /> <a href="li_lists.html">lists</a><br />
<a href="li_profiles.html">profiles</a><br /> <a href="li_profiles.html">profiles</a><br />
<a href="li_LDAP.html">LDAP</a><br />
<a href="li_types.html">types</a><br />
<a href="li_lib.html">lib</a><br />
<a href="li_modules.html">modules</a><br />
<a href="li_selfService.html">selfService</a><br /> <a href="li_selfService.html">selfService</a><br />
<a href="li_main.html">main</a><br /> <a href="li_configuration.html">configuration</a><br />
<a href="li_tools.html">tools</a><br />
<a href="li_Help.html">Help</a><br />
<a href="li_tests.html">tests</a><br /> <a href="li_tests.html">tests</a><br />
<a href="li_main.html">main</a><br />
<br /><br /> <br /><br />
<b>Files:</b><br /> <b>Files:</b><br />
<div class="package"> <div class="package">
@ -70,7 +70,6 @@
[ <a href="elementindex_LDAP.html#l">l</a> ] [ <a href="elementindex_LDAP.html#l">l</a> ]
[ <a href="elementindex_LDAP.html#n">n</a> ] [ <a href="elementindex_LDAP.html#n">n</a> ]
[ <a href="elementindex_LDAP.html#s">s</a> ] [ <a href="elementindex_LDAP.html#s">s</a> ]
[ <a href="elementindex_LDAP.html#u">u</a> ]
[ <a href="elementindex_LDAP.html#_">_</a> ] [ <a href="elementindex_LDAP.html#_">_</a> ]
<hr /> <hr />
@ -78,6 +77,8 @@
<div> <div>
<h2>_</h2> <h2>_</h2>
<dl> <dl>
<dt><b>__construct</b></dt>
<dd>in file ldap.inc, method <a href="LDAP/Ldap.html#method__construct">Ldap::__construct()</a></dd>
<dt><b>__sleep</b></dt> <dt><b>__sleep</b></dt>
<dd>in file ldap.inc, method <a href="LDAP/Ldap.html#method__sleep">Ldap::__sleep()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Closes connection to LDAP server before serialization</dd> <dd>in file ldap.inc, method <a href="LDAP/Ldap.html#method__sleep">Ldap::__sleep()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Closes connection to LDAP server before serialization</dd>
<dt><b>__wakeup</b></dt> <dt><b>__wakeup</b></dt>
@ -141,8 +142,6 @@
<h2>l</h2> <h2>l</h2>
<dl> <dl>
<dt><b>Ldap</b></dt> <dt><b>Ldap</b></dt>
<dd>in file ldap.inc, method <a href="LDAP/Ldap.html#methodLdap">Ldap::Ldap()</a></dd>
<dt><b>Ldap</b></dt>
<dd>in file ldap.inc, class <a href="LDAP/Ldap.html">Ldap</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Ldap manages connection to LDAP and includes several helper functions.</dd> <dd>in file ldap.inc, class <a href="LDAP/Ldap.html">Ldap</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Ldap manages connection to LDAP and includes several helper functions.</dd>
<dt><b>ldap.inc</b></dt> <dt><b>ldap.inc</b></dt>
<dd>procedural page <a href="LDAP/_lib---ldap.inc.html">ldap.inc</a></dd> <dd>procedural page <a href="LDAP/_lib---ldap.inc.html">ldap.inc</a></dd>
@ -164,8 +163,6 @@
<div> <div>
<h2>s</h2> <h2>s</h2>
<dl> <dl>
<dt><b>$supports_unix_hosts</b></dt>
<dd>in file ldap.inc, variable <a href="LDAP/Ldap.html#var$supports_unix_hosts">Ldap::$supports_unix_hosts</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Host attribute in inetOrgPerson</dd>
<dt><b>search_units</b></dt> <dt><b>search_units</b></dt>
<dd>in file ldap.inc, method <a href="LDAP/Ldap.html#methodsearch_units">Ldap::search_units()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Returns an array with all organizational units under the given suffix</dd> <dd>in file ldap.inc, method <a href="LDAP/Ldap.html#methodsearch_units">Ldap::search_units()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Returns an array with all organizational units under the given suffix</dd>
<dt><b>server</b></dt> <dt><b>server</b></dt>
@ -173,21 +170,9 @@
</dl> </dl>
</div> </div>
<a href="elementindex_LDAP.html#top">top</a><br> <a href="elementindex_LDAP.html#top">top</a><br>
<hr />
<a name="u"></a>
<div>
<h2>u</h2>
<dl>
<dt><b>updateCapabilities</b></dt>
<dd>in file ldap.inc, method <a href="LDAP/Ldap.html#methodupdateCapabilities">Ldap::updateCapabilities()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Updates the capabilities values (var $supports_*)</dd>
<dt><b>updateClasses</b></dt>
<dd>in file ldap.inc, method <a href="LDAP/Ldap.html#methodupdateClasses">Ldap::updateClasses()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Reads the array of objectClasses from the LDAP server</dd>
</dl>
</div>
<a href="elementindex_LDAP.html#top">top</a><br>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:35 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:58:47 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -13,8 +13,8 @@
<tr> <tr>
<td class="header_menu"> <td class="header_menu">
[ <a href="classtrees_PDF.html" class="menu">class tree: PDF</a> ] [ <a href="classtrees_PDF.html" class="menu">class tree: PDF</a> ]
[ <a href="elementindex_PDF.html" class="menu">index: PDF</a> ] [ <a href="elementindex_PDF.html" class="menu">index: PDF</a> ]
[ <a href="elementindex.html" class="menu">all elements</a> ] [ <a href="elementindex.html" class="menu">all elements</a> ]
</td> </td>
@ -26,27 +26,29 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="ric_INSTALL.html">INSTALL</a></p>
<p><a href="ric_README.html">README</a></p> <p><a href="ric_README.html">README</a></p>
<p><a href="ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="li_Help.html">Help</a><br />
<a href="li_PDF.html">PDF</a><br /> <a href="li_PDF.html">PDF</a><br />
<a href="li_lib.html">lib</a><br />
<a href="li_modules.html">modules</a><br />
<a href="li_types.html">types</a><br />
<a href="li_configuration.html">configuration</a><br />
<a href="li_tools.html">tools</a><br />
<a href="li_LDAP.html">LDAP</a><br />
<a href="li_lists.html">lists</a><br /> <a href="li_lists.html">lists</a><br />
<a href="li_profiles.html">profiles</a><br /> <a href="li_profiles.html">profiles</a><br />
<a href="li_LDAP.html">LDAP</a><br />
<a href="li_types.html">types</a><br />
<a href="li_lib.html">lib</a><br />
<a href="li_modules.html">modules</a><br />
<a href="li_selfService.html">selfService</a><br /> <a href="li_selfService.html">selfService</a><br />
<a href="li_main.html">main</a><br /> <a href="li_configuration.html">configuration</a><br />
<a href="li_tools.html">tools</a><br />
<a href="li_Help.html">Help</a><br />
<a href="li_tests.html">tests</a><br /> <a href="li_tests.html">tests</a><br />
<a href="li_main.html">main</a><br />
<br /><br /> <br /><br />
<b>Files:</b><br /> <b>Files:</b><br />
<div class="package"> <div class="package">
<a href="PDF/_lib---fpdf.php.html"> fpdf.php <a href="PDF/_lib---fpdf.php.html"> fpdf.php
</a><br>
<a href="PDF/_lib---lamPDF.inc.html"> lamPDF.inc
</a><br> </a><br>
<a href="PDF/_lib---pdf.inc.html"> pdf.inc <a href="PDF/_lib---pdf.inc.html"> pdf.inc
</a><br> </a><br>
@ -156,13 +158,13 @@
<dt><b>_putimages</b></dt> <dt><b>_putimages</b></dt>
<dd>in file fpdf.php, method <a href="PDF/FPDF.html#method_putimages">FPDF::_putimages()</a></dd> <dd>in file fpdf.php, method <a href="PDF/FPDF.html#method_putimages">FPDF::_putimages()</a></dd>
<dt><b>_putinfo</b></dt> <dt><b>_putinfo</b></dt>
<dd>in file ufpdf.php, method <a href="PDF/UFPDF.html#method_putinfo">UFPDF::_putinfo()</a></dd>
<dt><b>_putinfo</b></dt>
<dd>in file fpdf.php, method <a href="PDF/FPDF.html#method_putinfo">FPDF::_putinfo()</a></dd> <dd>in file fpdf.php, method <a href="PDF/FPDF.html#method_putinfo">FPDF::_putinfo()</a></dd>
<dt><b>_putpages</b></dt> <dt><b>_putinfo</b></dt>
<dd>in file fpdf.php, method <a href="PDF/FPDF.html#method_putpages">FPDF::_putpages()</a></dd> <dd>in file ufpdf.php, method <a href="PDF/UFPDF.html#method_putinfo">UFPDF::_putinfo()</a></dd>
<dt><b>_putpages</b></dt> <dt><b>_putpages</b></dt>
<dd>in file ufpdf.php, method <a href="PDF/UFPDF.html#method_putpages">UFPDF::_putpages()</a></dd> <dd>in file ufpdf.php, method <a href="PDF/UFPDF.html#method_putpages">UFPDF::_putpages()</a></dd>
<dt><b>_putpages</b></dt>
<dd>in file fpdf.php, method <a href="PDF/FPDF.html#method_putpages">FPDF::_putpages()</a></dd>
<dt><b>_putresourcedict</b></dt> <dt><b>_putresourcedict</b></dt>
<dd>in file fpdf.php, method <a href="PDF/FPDF.html#method_putresourcedict">FPDF::_putresourcedict()</a></dd> <dd>in file fpdf.php, method <a href="PDF/FPDF.html#method_putresourcedict">FPDF::_putresourcedict()</a></dd>
<dt><b>_putresources</b></dt> <dt><b>_putresources</b></dt>
@ -179,6 +181,10 @@
<dd>in file ufpdf.php, method <a href="PDF/UFPDF.html#method_textstring">UFPDF::_textstring()</a></dd> <dd>in file ufpdf.php, method <a href="PDF/UFPDF.html#method_textstring">UFPDF::_textstring()</a></dd>
<dt><b>_textstring</b></dt> <dt><b>_textstring</b></dt>
<dd>in file fpdf.php, method <a href="PDF/FPDF.html#method_textstring">FPDF::_textstring()</a></dd> <dd>in file fpdf.php, method <a href="PDF/FPDF.html#method_textstring">FPDF::_textstring()</a></dd>
<dt><b>__construct</b></dt>
<dd>in file xml_parser.inc, method <a href="PDF/xmlParser.html#method__construct">xmlParser::__construct()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Constructor</dd>
<dt><b>__construct</b></dt>
<dd>in file lamPDF.inc, method <a href="PDF/lamPDF.html#method__construct">lamPDF::__construct()</a></dd>
</dl> </dl>
</div> </div>
<a href="elementindex_PDF.html#top">top</a><br> <a href="elementindex_PDF.html#top">top</a><br>
@ -298,9 +304,9 @@
<dt><b>$FontFiles</b></dt> <dt><b>$FontFiles</b></dt>
<dd>in file fpdf.php, variable <a href="PDF/FPDF.html#var$FontFiles">FPDF::$FontFiles</a></dd> <dd>in file fpdf.php, variable <a href="PDF/FPDF.html#var$FontFiles">FPDF::$FontFiles</a></dd>
<dt><b>$fontList</b></dt> <dt><b>$fontList</b></dt>
<dd>in file pdf.inc, variable <a href="PDF/lamPDF.html#var$fontList">lamPDF::$fontList</a><br>&nbsp;&nbsp;&nbsp;&nbsp;list of supported fonts</dd> <dd>in file lamPDF.inc, variable <a href="PDF/lamPDF.html#var$fontList">lamPDF::$fontList</a><br>&nbsp;&nbsp;&nbsp;&nbsp;list of supported fonts</dd>
<dt><b>$fontName</b></dt> <dt><b>$fontName</b></dt>
<dd>in file pdf.inc, variable <a href="PDF/lamPDF.html#var$fontName">lamPDF::$fontName</a><br>&nbsp;&nbsp;&nbsp;&nbsp;current active font name</dd> <dd>in file lamPDF.inc, variable <a href="PDF/lamPDF.html#var$fontName">lamPDF::$fontName</a><br>&nbsp;&nbsp;&nbsp;&nbsp;current active font name</dd>
<dt><b>$fonts</b></dt> <dt><b>$fonts</b></dt>
<dd>in file fpdf.php, variable <a href="PDF/FPDF.html#var$fonts">FPDF::$fonts</a></dd> <dd>in file fpdf.php, variable <a href="PDF/FPDF.html#var$fonts">FPDF::$fonts</a></dd>
<dt><b>$FontSize</b></dt> <dt><b>$FontSize</b></dt>
@ -314,7 +320,7 @@
<dt><b>$fwPt</b></dt> <dt><b>$fwPt</b></dt>
<dd>in file fpdf.php, variable <a href="PDF/FPDF.html#var$fwPt">FPDF::$fwPt</a></dd> <dd>in file fpdf.php, variable <a href="PDF/FPDF.html#var$fwPt">FPDF::$fwPt</a></dd>
<dt><b>footer</b></dt> <dt><b>footer</b></dt>
<dd>in file pdf.inc, method <a href="PDF/lamPDF.html#methodfooter">lamPDF::footer()</a></dd> <dd>in file lamPDF.inc, method <a href="PDF/lamPDF.html#methodfooter">lamPDF::footer()</a></dd>
<dt><b>Footer</b></dt> <dt><b>Footer</b></dt>
<dd>in file fpdf.php, method <a href="PDF/FPDF.html#methodFooter">FPDF::Footer()</a></dd> <dd>in file fpdf.php, method <a href="PDF/FPDF.html#methodFooter">FPDF::Footer()</a></dd>
<dt><b>FPDF</b></dt> <dt><b>FPDF</b></dt>
@ -360,7 +366,7 @@
<dt><b>$hPt</b></dt> <dt><b>$hPt</b></dt>
<dd>in file fpdf.php, variable <a href="PDF/FPDF.html#var$hPt">FPDF::$hPt</a></dd> <dd>in file fpdf.php, variable <a href="PDF/FPDF.html#var$hPt">FPDF::$hPt</a></dd>
<dt><b>header</b></dt> <dt><b>header</b></dt>
<dd>in file pdf.inc, method <a href="PDF/lamPDF.html#methodheader">lamPDF::header()</a></dd> <dd>in file lamPDF.inc, method <a href="PDF/lamPDF.html#methodheader">lamPDF::header()</a></dd>
<dt><b>Header</b></dt> <dt><b>Header</b></dt>
<dd>in file fpdf.php, method <a href="PDF/FPDF.html#methodHeader">FPDF::Header()</a></dd> <dd>in file fpdf.php, method <a href="PDF/FPDF.html#methodHeader">FPDF::Header()</a></dd>
</dl> </dl>
@ -408,11 +414,11 @@
<dt><b>$lMargin</b></dt> <dt><b>$lMargin</b></dt>
<dd>in file fpdf.php, variable <a href="PDF/FPDF.html#var$lMargin">FPDF::$lMargin</a></dd> <dd>in file fpdf.php, variable <a href="PDF/FPDF.html#var$lMargin">FPDF::$lMargin</a></dd>
<dt><b>lamPDF</b></dt> <dt><b>lamPDF</b></dt>
<dd>in file pdf.inc, method <a href="PDF/lamPDF.html#methodlamPDF">lamPDF::lamPDF()</a></dd> <dd>in file lamPDF.inc, class <a href="PDF/lamPDF.html">lamPDF</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Creates a LAM information page in PDF format.</dd>
<dt><b>lamPDF</b></dt>
<dd>in file pdf.inc, class <a href="PDF/lamPDF.html">lamPDF</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Creates a LAM information page in PDF format.</dd>
<dt><b>LAMPDF_LINEWIDTH</b></dt> <dt><b>LAMPDF_LINEWIDTH</b></dt>
<dd>in file pdf.inc, constant <a href="PDF/_lib---pdf.inc.html#defineLAMPDF_LINEWIDTH">LAMPDF_LINEWIDTH</a><br>&nbsp;&nbsp;&nbsp;&nbsp;PDF line width</dd> <dd>in file pdf.inc, constant <a href="PDF/_lib---pdf.inc.html#defineLAMPDF_LINEWIDTH">LAMPDF_LINEWIDTH</a><br>&nbsp;&nbsp;&nbsp;&nbsp;PDF line width</dd>
<dt><b>lamPDF.inc</b></dt>
<dd>procedural page <a href="PDF/_lib---lamPDF.inc.html">lamPDF.inc</a></dd>
<dt><b>Line</b></dt> <dt><b>Line</b></dt>
<dd>in file fpdf.php, method <a href="PDF/FPDF.html#methodLine">FPDF::Line()</a></dd> <dd>in file fpdf.php, method <a href="PDF/FPDF.html#methodLine">FPDF::Line()</a></dd>
<dt><b>Link</b></dt> <dt><b>Link</b></dt>
@ -476,7 +482,7 @@
<dt><b>$pages</b></dt> <dt><b>$pages</b></dt>
<dd>in file fpdf.php, variable <a href="PDF/FPDF.html#var$pages">FPDF::$pages</a></dd> <dd>in file fpdf.php, variable <a href="PDF/FPDF.html#var$pages">FPDF::$pages</a></dd>
<dt><b>$page_definitions</b></dt> <dt><b>$page_definitions</b></dt>
<dd>in file pdf.inc, variable <a href="PDF/lamPDF.html#var$page_definitions">lamPDF::$page_definitions</a><br>&nbsp;&nbsp;&nbsp;&nbsp;format settings for page layout</dd> <dd>in file lamPDF.inc, variable <a href="PDF/lamPDF.html#var$page_definitions">lamPDF::$page_definitions</a><br>&nbsp;&nbsp;&nbsp;&nbsp;format settings for page layout</dd>
<dt><b>$PDFVersion</b></dt> <dt><b>$PDFVersion</b></dt>
<dd>in file fpdf.php, variable <a href="PDF/FPDF.html#var$PDFVersion">FPDF::$PDFVersion</a></dd> <dd>in file fpdf.php, variable <a href="PDF/FPDF.html#var$PDFVersion">FPDF::$PDFVersion</a></dd>
<dt><b>pdf.inc</b></dt> <dt><b>pdf.inc</b></dt>
@ -660,8 +666,6 @@
<dt><b>xml_parser.inc</b></dt> <dt><b>xml_parser.inc</b></dt>
<dd>procedural page <a href="PDF/_lib---xml_parser.inc.html">xml_parser.inc</a></dd> <dd>procedural page <a href="PDF/_lib---xml_parser.inc.html">xml_parser.inc</a></dd>
<dt><b>xmlParser</b></dt> <dt><b>xmlParser</b></dt>
<dd>in file xml_parser.inc, method <a href="PDF/xmlParser.html#methodxmlParser">xmlParser::xmlParser()</a></dd>
<dt><b>xmlParser</b></dt>
<dd>in file xml_parser.inc, class <a href="PDF/xmlParser.html">xmlParser</a></dd> <dd>in file xml_parser.inc, class <a href="PDF/xmlParser.html">xmlParser</a></dd>
</dl> </dl>
</div> </div>
@ -688,7 +692,7 @@
<a href="elementindex_PDF.html#top">top</a><br> <a href="elementindex_PDF.html#top">top</a><br>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:35 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:58:47 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

View File

@ -13,8 +13,8 @@
<tr> <tr>
<td class="header_menu"> <td class="header_menu">
[ <a href="classtrees_configuration.html" class="menu">class tree: configuration</a> ] [ <a href="classtrees_configuration.html" class="menu">class tree: configuration</a> ]
[ <a href="elementindex_configuration.html" class="menu">index: configuration</a> ] [ <a href="elementindex_configuration.html" class="menu">index: configuration</a> ]
[ <a href="elementindex.html" class="menu">all elements</a> ] [ <a href="elementindex.html" class="menu">all elements</a> ]
</td> </td>
@ -26,23 +26,23 @@
<tr valign="top"> <tr valign="top">
<td width="200" class="menu"> <td width="200" class="menu">
<div id="ric"> <div id="ric">
<p><a href="ric_INSTALL.html">INSTALL</a></p>
<p><a href="ric_README.html">README</a></p> <p><a href="ric_README.html">README</a></p>
<p><a href="ric_INSTALL.html">INSTALL</a></p>
</div> </div>
<b>Packages:</b><br /> <b>Packages:</b><br />
<a href="li_Help.html">Help</a><br />
<a href="li_PDF.html">PDF</a><br /> <a href="li_PDF.html">PDF</a><br />
<a href="li_lib.html">lib</a><br />
<a href="li_modules.html">modules</a><br />
<a href="li_types.html">types</a><br />
<a href="li_configuration.html">configuration</a><br />
<a href="li_tools.html">tools</a><br />
<a href="li_LDAP.html">LDAP</a><br />
<a href="li_lists.html">lists</a><br /> <a href="li_lists.html">lists</a><br />
<a href="li_profiles.html">profiles</a><br /> <a href="li_profiles.html">profiles</a><br />
<a href="li_LDAP.html">LDAP</a><br />
<a href="li_types.html">types</a><br />
<a href="li_lib.html">lib</a><br />
<a href="li_modules.html">modules</a><br />
<a href="li_selfService.html">selfService</a><br /> <a href="li_selfService.html">selfService</a><br />
<a href="li_main.html">main</a><br /> <a href="li_configuration.html">configuration</a><br />
<a href="li_tools.html">tools</a><br />
<a href="li_Help.html">Help</a><br />
<a href="li_tests.html">tests</a><br /> <a href="li_tests.html">tests</a><br />
<a href="li_main.html">main</a><br />
<br /><br /> <br /><br />
<b>Files:</b><br /> <b>Files:</b><br />
<div class="package"> <div class="package">
@ -83,26 +83,39 @@
[ <a href="elementindex_configuration.html#a">a</a> ] [ <a href="elementindex_configuration.html#a">a</a> ]
[ <a href="elementindex_configuration.html#c">c</a> ] [ <a href="elementindex_configuration.html#c">c</a> ]
[ <a href="elementindex_configuration.html#d">d</a> ] [ <a href="elementindex_configuration.html#d">d</a> ]
[ <a href="elementindex_configuration.html#f">f</a> ]
[ <a href="elementindex_configuration.html#g">g</a> ] [ <a href="elementindex_configuration.html#g">g</a> ]
[ <a href="elementindex_configuration.html#i">i</a> ] [ <a href="elementindex_configuration.html#i">i</a> ]
[ <a href="elementindex_configuration.html#l">l</a> ] [ <a href="elementindex_configuration.html#l">l</a> ]
[ <a href="elementindex_configuration.html#m">m</a> ] [ <a href="elementindex_configuration.html#m">m</a> ]
[ <a href="elementindex_configuration.html#p">p</a> ] [ <a href="elementindex_configuration.html#p">p</a> ]
[ <a href="elementindex_configuration.html#s">s</a> ] [ <a href="elementindex_configuration.html#s">s</a> ]
[ <a href="elementindex_configuration.html#t">t</a> ] [ <a href="elementindex_configuration.html#_">_</a> ]
<hr />
<a name="_"></a>
<div>
<h2>_</h2>
<dl>
<dt><b>__construct</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#method__construct">LAMConfig::__construct()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Loads preferences from config file</dd>
<dt><b>__construct</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMCfgMain.html#method__construct">LAMCfgMain::__construct()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Loads preferences from config file</dd>
</dl>
</div>
<a href="elementindex_configuration.html#top">top</a><br>
<hr /> <hr />
<a name="a"></a> <a name="a"></a>
<div> <div>
<h2>a</h2> <h2>a</h2>
<dl> <dl>
<dt><b>$activeTypes</b></dt>
<dd>in file config.inc, variable <a href="configuration/LAMConfig.html#var$activeTypes">LAMConfig::$activeTypes</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Active account types</dd>
<dt><b>$Admins</b></dt>
<dd>in file config.inc, variable <a href="configuration/LAMConfig.html#var$Admins">LAMConfig::$Admins</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Array of string: users with admin rights</dd>
<dt><b>$allowedHosts</b></dt> <dt><b>$allowedHosts</b></dt>
<dd>in file config.inc, variable <a href="configuration/LAMCfgMain.html#var$allowedHosts">LAMCfgMain::$allowedHosts</a><br>&nbsp;&nbsp;&nbsp;&nbsp;list of hosts which may access LAM</dd> <dd>in file config.inc, variable <a href="configuration/LAMCfgMain.html#var$allowedHosts">LAMCfgMain::$allowedHosts</a><br>&nbsp;&nbsp;&nbsp;&nbsp;list of hosts which may access LAM</dd>
<dt><b>ACCESS_ALL</b></dt>
<dd>in file config.inc, class constant <a href="configuration/LAMConfig.html#constACCESS_ALL">LAMConfig::ACCESS_ALL</a></dd>
<dt><b>ACCESS_PASSWORD_CHANGE</b></dt>
<dd>in file config.inc, class constant <a href="configuration/LAMConfig.html#constACCESS_PASSWORD_CHANGE">LAMConfig::ACCESS_PASSWORD_CHANGE</a></dd>
<dt><b>ACCESS_READ_ONLY</b></dt>
<dd>in file config.inc, class constant <a href="configuration/LAMConfig.html#constACCESS_READ_ONLY">LAMConfig::ACCESS_READ_ONLY</a></dd>
</dl> </dl>
</div> </div>
<a href="elementindex_configuration.html#top">top</a><br> <a href="elementindex_configuration.html#top">top</a><br>
@ -111,10 +124,12 @@
<div> <div>
<h2>c</h2> <h2>c</h2>
<dl> <dl>
<dt><b>$cachetimeout</b></dt>
<dd>in file config.inc, variable <a href="configuration/LAMConfig.html#var$cachetimeout">LAMConfig::$cachetimeout</a><br>&nbsp;&nbsp;&nbsp;&nbsp;LDAP cache timeout</dd>
<dt><b>checkChmod</b></dt> <dt><b>checkChmod</b></dt>
<dd>in file config.inc, function <a href="configuration/_lib---config.inc.html#functioncheckChmod">checkChmod()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Checks whether a specific flag in the rights string is set.</dd> <dd>in file config.inc, function <a href="configuration/_lib---config.inc.html#functioncheckChmod">checkChmod()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Checks whether a specific flag in the rights string is set.</dd>
<dt><b>checkPassword</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMCfgMain.html#methodcheckPassword">LAMCfgMain::checkPassword()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Checks if the given password matches.</dd>
<dt><b>check_Passwd</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodcheck_Passwd">LAMConfig::check_Passwd()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Checks if the given password matches.</dd>
<dt><b>config_showAccountModules</b></dt> <dt><b>config_showAccountModules</b></dt>
<dd>in file confmodules.php, function <a href="configuration/_templates---config---confmodules.php.html#functionconfig_showAccountModules">config_showAccountModules()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Displays the module selection boxes and checks if dependencies are fulfilled.</dd> <dd>in file confmodules.php, function <a href="configuration/_templates---config---confmodules.php.html#functionconfig_showAccountModules">config_showAccountModules()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Displays the module selection boxes and checks if dependencies are fulfilled.</dd>
<dt><b>config.inc</b></dt> <dt><b>config.inc</b></dt>
@ -137,18 +152,6 @@
<dl> <dl>
<dt><b>$default</b></dt> <dt><b>$default</b></dt>
<dd>in file config.inc, variable <a href="configuration/LAMCfgMain.html#var$default">LAMCfgMain::$default</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Default profile</dd> <dd>in file config.inc, variable <a href="configuration/LAMCfgMain.html#var$default">LAMCfgMain::$default</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Default profile</dd>
<dt><b>$defaultLanguage</b></dt>
<dd>in file config.inc, variable <a href="configuration/LAMConfig.html#var$defaultLanguage">LAMConfig::$defaultLanguage</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Default language</dd>
</dl>
</div>
<a href="elementindex_configuration.html#top">top</a><br>
<hr />
<a name="f"></a>
<div>
<h2>f</h2>
<dl>
<dt><b>$file</b></dt>
<dd>in file config.inc, variable <a href="configuration/LAMConfig.html#var$file">LAMConfig::$file</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Name of configuration file</dd>
</dl> </dl>
</div> </div>
<a href="elementindex_configuration.html#top">top</a><br> <a href="elementindex_configuration.html#top">top</a><br>
@ -157,8 +160,12 @@
<div> <div>
<h2>g</h2> <h2>g</h2>
<dl> <dl>
<dt><b>getAccessLevel</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodgetAccessLevel">LAMConfig::getAccessLevel()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Returns the access level for this profile.</dd>
<dt><b>getConfigProfiles</b></dt> <dt><b>getConfigProfiles</b></dt>
<dd>in file config.inc, function <a href="configuration/_lib---config.inc.html#functiongetConfigProfiles">getConfigProfiles()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Returns an array of string with all available configuration profiles (without .conf)</dd> <dd>in file config.inc, function <a href="configuration/_lib---config.inc.html#functiongetConfigProfiles">getConfigProfiles()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Returns an array of string with all available configuration profiles (without .conf)</dd>
<dt><b>getName</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodgetName">LAMConfig::getName()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Returns the name of the config file</dd>
<dt><b>get_AccountModules</b></dt> <dt><b>get_AccountModules</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodget_AccountModules">LAMConfig::get_AccountModules()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Returns an array of all selected account modules</dd> <dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodget_AccountModules">LAMConfig::get_AccountModules()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Returns an array of all selected account modules</dd>
<dt><b>get_ActiveTypes</b></dt> <dt><b>get_ActiveTypes</b></dt>
@ -175,12 +182,8 @@
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodget_defaultLanguage">LAMConfig::get_defaultLanguage()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Returns the default language string</dd> <dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodget_defaultLanguage">LAMConfig::get_defaultLanguage()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Returns the default language string</dd>
<dt><b>get_listAttributes</b></dt> <dt><b>get_listAttributes</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodget_listAttributes">LAMConfig::get_listAttributes()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Returns the list of attributes to show in user list</dd> <dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodget_listAttributes">LAMConfig::get_listAttributes()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Returns the list of attributes to show in user list</dd>
<dt><b>get_MaxListEntries</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodget_MaxListEntries">LAMConfig::get_MaxListEntries()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Returns the maximum number of rows in user/group/host lists</dd>
<dt><b>get_moduleSettings</b></dt> <dt><b>get_moduleSettings</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodget_moduleSettings">LAMConfig::get_moduleSettings()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Returns a list of saved module settings</dd> <dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodget_moduleSettings">LAMConfig::get_moduleSettings()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Returns a list of saved module settings</dd>
<dt><b>get_Passwd</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodget_Passwd">LAMConfig::get_Passwd()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Returns the password to access the preferences wizard</dd>
<dt><b>get_scriptPath</b></dt> <dt><b>get_scriptPath</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodget_scriptPath">LAMConfig::get_scriptPath()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Returns the path to the external script</dd> <dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodget_scriptPath">LAMConfig::get_scriptPath()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Returns the path to the external script</dd>
<dt><b>get_scriptRights</b></dt> <dt><b>get_scriptRights</b></dt>
@ -219,10 +222,6 @@
<dd>in file config.inc, variable <a href="configuration/LAMCfgMain.html#var$logLevel">LAMCfgMain::$logLevel</a><br>&nbsp;&nbsp;&nbsp;&nbsp;log level</dd> <dd>in file config.inc, variable <a href="configuration/LAMCfgMain.html#var$logLevel">LAMCfgMain::$logLevel</a><br>&nbsp;&nbsp;&nbsp;&nbsp;log level</dd>
<dt><b>LAMCfgMain</b></dt> <dt><b>LAMCfgMain</b></dt>
<dd>in file config.inc, class <a href="configuration/LAMCfgMain.html">LAMCfgMain</a><br>&nbsp;&nbsp;&nbsp;&nbsp;This class manages config.cfg.</dd> <dd>in file config.inc, class <a href="configuration/LAMCfgMain.html">LAMCfgMain</a><br>&nbsp;&nbsp;&nbsp;&nbsp;This class manages config.cfg.</dd>
<dt><b>LAMCfgMain</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMCfgMain.html#methodLAMCfgMain">LAMCfgMain::LAMCfgMain()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Loads preferences from config file</dd>
<dt><b>LAMConfig</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodLAMConfig">LAMConfig::LAMConfig()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Loads preferences from config file</dd>
<dt><b>LAMConfig</b></dt> <dt><b>LAMConfig</b></dt>
<dd>in file config.inc, class <a href="configuration/LAMConfig.html">LAMConfig</a><br>&nbsp;&nbsp;&nbsp;&nbsp;This class manages .conf files.</dd> <dd>in file config.inc, class <a href="configuration/LAMConfig.html">LAMConfig</a><br>&nbsp;&nbsp;&nbsp;&nbsp;This class manages .conf files.</dd>
<dt><b>LAMVersion</b></dt> <dt><b>LAMVersion</b></dt>
@ -235,10 +234,6 @@
<div> <div>
<h2>m</h2> <h2>m</h2>
<dl> <dl>
<dt><b>$maxlistentries</b></dt>
<dd>in file config.inc, variable <a href="configuration/LAMConfig.html#var$maxlistentries">LAMConfig::$maxlistentries</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Maximum number of rows shown in user/group/host lists</dd>
<dt><b>$moduleSettings</b></dt>
<dd>in file config.inc, variable <a href="configuration/LAMConfig.html#var$moduleSettings">LAMConfig::$moduleSettings</a><br>&nbsp;&nbsp;&nbsp;&nbsp;module settings</dd>
<dt><b>metaRefresh</b></dt> <dt><b>metaRefresh</b></dt>
<dd>in file config.inc, function <a href="configuration/_lib---config.inc.html#functionmetaRefresh">metaRefresh()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Prints a meta refresh page</dd> <dd>in file config.inc, function <a href="configuration/_lib---config.inc.html#functionmetaRefresh">metaRefresh()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Prints a meta refresh page</dd>
<dt><b>mainlogin.php</b></dt> <dt><b>mainlogin.php</b></dt>
@ -253,10 +248,6 @@
<div> <div>
<h2>p</h2> <h2>p</h2>
<dl> <dl>
<dt><b>$Passwd</b></dt>
<dd>in file config.inc, variable <a href="configuration/LAMConfig.html#var$Passwd">LAMConfig::$Passwd</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Password to edit preferences</dd>
<dt><b>$password</b></dt>
<dd>in file config.inc, variable <a href="configuration/LAMCfgMain.html#var$password">LAMCfgMain::$password</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Password to change config.cfg</dd>
<dt><b>profmanage.php</b></dt> <dt><b>profmanage.php</b></dt>
<dd>procedural page <a href="configuration/_templates---config---profmanage.php.html">profmanage.php</a></dd> <dd>procedural page <a href="configuration/_templates---config---profmanage.php.html">profmanage.php</a></dd>
</dl> </dl>
@ -267,24 +258,20 @@
<div> <div>
<h2>s</h2> <h2>s</h2>
<dl> <dl>
<dt><b>$scriptPath</b></dt>
<dd>in file config.inc, variable <a href="configuration/LAMConfig.html#var$scriptPath">LAMConfig::$scriptPath</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Path to external lamdaemon script on server where it is executed</dd>
<dt><b>$scriptRights</b></dt>
<dd>in file config.inc, variable <a href="configuration/LAMConfig.html#var$scriptRights">LAMConfig::$scriptRights</a><br>&nbsp;&nbsp;&nbsp;&nbsp;The rights for the home directory</dd>
<dt><b>$scriptServer</b></dt>
<dd>in file config.inc, variable <a href="configuration/LAMConfig.html#var$scriptServer">LAMConfig::$scriptServer</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Servers where lamdaemon script is executed</dd>
<dt><b>$ServerURL</b></dt>
<dd>in file config.inc, variable <a href="configuration/LAMConfig.html#var$ServerURL">LAMConfig::$ServerURL</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Server address (e.g. ldap://127.0.0.1:389)</dd>
<dt><b>$sessionTimeout</b></dt> <dt><b>$sessionTimeout</b></dt>
<dd>in file config.inc, variable <a href="configuration/LAMCfgMain.html#var$sessionTimeout">LAMCfgMain::$sessionTimeout</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Time of inactivity before session times out (minutes)</dd> <dd>in file config.inc, variable <a href="configuration/LAMCfgMain.html#var$sessionTimeout">LAMCfgMain::$sessionTimeout</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Time of inactivity before session times out (minutes)</dd>
<dt><b>save</b></dt> <dt><b>save</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMCfgMain.html#methodsave">LAMCfgMain::save()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Saves preferences to config file config.cfg</dd>
<dt><b>save</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodsave">LAMConfig::save()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Saves preferences to config file</dd> <dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodsave">LAMConfig::save()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Saves preferences to config file</dd>
<dt><b>save</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMCfgMain.html#methodsave">LAMCfgMain::save()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Saves preferences to config file config.cfg</dd>
<dt><b>saveSettings</b></dt> <dt><b>saveSettings</b></dt>
<dd>in file confmain.php, function <a href="configuration/_templates---config---confmain.php.html#functionsaveSettings">saveSettings()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Saves the entered settings.</dd> <dd>in file confmain.php, function <a href="configuration/_templates---config---confmain.php.html#functionsaveSettings">saveSettings()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Saves the entered settings.</dd>
<dt><b>setAccessLevel</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodsetAccessLevel">LAMConfig::setAccessLevel()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Sets the access level for this profile.</dd>
<dt><b>setlanguage</b></dt> <dt><b>setlanguage</b></dt>
<dd>in file config.inc, function <a href="configuration/_lib---config.inc.html#functionsetlanguage">setlanguage()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Sets language settings for automatic translation</dd> <dd>in file config.inc, function <a href="configuration/_lib---config.inc.html#functionsetlanguage">setlanguage()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Sets language settings for automatic translation</dd>
<dt><b>setPassword</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMCfgMain.html#methodsetPassword">LAMCfgMain::setPassword()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Sets a new config password.</dd>
<dt><b>set_AccountModules</b></dt> <dt><b>set_AccountModules</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodset_AccountModules">LAMConfig::set_AccountModules()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Sets the selected account modules</dd> <dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodset_AccountModules">LAMConfig::set_AccountModules()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Sets the selected account modules</dd>
<dt><b>set_ActiveTypes</b></dt> <dt><b>set_ActiveTypes</b></dt>
@ -297,8 +284,6 @@
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodset_defaultLanguage">LAMConfig::set_defaultLanguage()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Sets the default language string</dd> <dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodset_defaultLanguage">LAMConfig::set_defaultLanguage()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Sets the default language string</dd>
<dt><b>set_listAttributes</b></dt> <dt><b>set_listAttributes</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodset_listAttributes">LAMConfig::set_listAttributes()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Sets the list of attributes to show in user list</dd> <dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodset_listAttributes">LAMConfig::set_listAttributes()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Sets the list of attributes to show in user list</dd>
<dt><b>set_MaxListEntries</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodset_MaxListEntries">LAMConfig::set_MaxListEntries()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Sets the maximum number of rows in user/group/host lists</dd>
<dt><b>set_moduleSettings</b></dt> <dt><b>set_moduleSettings</b></dt>
<dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodset_moduleSettings">LAMConfig::set_moduleSettings()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Sets the settings for the account modules.</dd> <dd>in file config.inc, method <a href="configuration/LAMConfig.html#methodset_moduleSettings">LAMConfig::set_moduleSettings()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Sets the settings for the account modules.</dd>
<dt><b>set_Passwd</b></dt> <dt><b>set_Passwd</b></dt>
@ -318,21 +303,9 @@
</dl> </dl>
</div> </div>
<a href="elementindex_configuration.html#top">top</a><br> <a href="elementindex_configuration.html#top">top</a><br>
<hr />
<a name="t"></a>
<div>
<h2>t</h2>
<dl>
<dt><b>$treesuffix</b></dt>
<dd>in file config.inc, variable <a href="configuration/LAMConfig.html#var$treesuffix">LAMConfig::$treesuffix</a><br>&nbsp;&nbsp;&nbsp;&nbsp;LDAP suffix for tree view</dd>
<dt><b>$typeSettings</b></dt>
<dd>in file config.inc, variable <a href="configuration/LAMConfig.html#var$typeSettings">LAMConfig::$typeSettings</a><br>&nbsp;&nbsp;&nbsp;&nbsp;type settings</dd>
</dl>
</div>
<a href="elementindex_configuration.html#top">top</a><br>
<div class="credit"> <div class="credit">
<hr /> <hr />
Documentation generated on Sun, 04 Nov 2007 12:10:35 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a> Documentation generated on Sun, 06 Jan 2008 18:58:47 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.0</a>
</div> </div>
</td></tr></table> </td></tr></table>
</td> </td>

Some files were not shown because too many files have changed in this diff Show More