PHPDoc update
This commit is contained in:
parent
90b90b5a05
commit
c21ff593ef
|
@ -25,19 +25,22 @@
|
||||||
* Used to delete accounts from LDAP tree.
|
* Used to delete accounts from LDAP tree.
|
||||||
*
|
*
|
||||||
* @author Tilo Lutz
|
* @author Tilo Lutz
|
||||||
* @module main
|
* @package main
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
// include all needed files
|
/** account functions */
|
||||||
include_once('../lib/account.inc'); // File with all account-funtions
|
include_once('../lib/account.inc');
|
||||||
include_once('../lib/config.inc'); // File with configure-functions
|
/** current configuration options */
|
||||||
include_once('../lib/profiles.inc'); // functions to load and save profiles
|
include_once('../lib/config.inc');
|
||||||
include_once('../lib/status.inc'); // Return error-message
|
/** message displaying */
|
||||||
include_once('../lib/pdf.inc'); // Return a pdf-file
|
include_once('../lib/status.inc');
|
||||||
include_once('../lib/ldap.inc'); // LDAP-functions
|
/** LDAP connection */
|
||||||
include_once('../lib/lamdaemon.inc'); // lamdaemon
|
include_once('../lib/ldap.inc');
|
||||||
include_once('../lib/modules.inc'); // lamdaemon
|
/** lamdaemon interface */
|
||||||
|
include_once('../lib/lamdaemon.inc');
|
||||||
|
/** module interface */
|
||||||
|
include_once('../lib/modules.inc');
|
||||||
|
|
||||||
// Start session
|
// Start session
|
||||||
session_save_path('../sess');
|
session_save_path('../sess');
|
||||||
|
|
Loading…
Reference in New Issue