documentation update

This commit is contained in:
Roland Gruber 2004-06-10 11:46:13 +00:00
parent d97b91e1cb
commit 8c7a04a1c9
3 changed files with 21 additions and 5 deletions

View File

@ -19,10 +19,18 @@ $Id$
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Manages Samba 3 domain entries.
*/
/**
* Manages Samba 3 domain entries.
*
* @package tools
* @author Roland Gruber
*/
/** access to configuration options */
include_once ("../lib/config.inc");
/** access to LDAP server */
include_once ("../lib/ldap.inc");
// start session

View File

@ -19,15 +19,23 @@ $Id$
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
User is logged off from LDAP server, session is destroyed.
*/
/**
* User is logged off from LDAP server, session is destroyed.
*
* @package main
* @author Roland Gruber
*/
// delete key and iv in cookie
setcookie("Key", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", 0, "/");
setcookie("IV", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", 0, "/");
/** Used to display status messages */
include_once("../lib/status.inc");
/** LDAP settings are deleted at logout */
include_once("../lib/ldap.inc");
// start session

View File

@ -25,7 +25,7 @@ $Id$
* Provides a list of tools like file upload or profile editor.
*
* @author Roland Gruber
* @package main
* @package tools
*/
/** access to configuration options */