From 8c7a04a1c9a2d070ee11563ad089a9b66ca1f521 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Thu, 10 Jun 2004 11:46:13 +0000 Subject: [PATCH] documentation update --- lam/templates/domain.php | 12 ++++++++++-- lam/templates/logout.php | 12 ++++++++++-- lam/templates/tools.php | 2 +- 3 files changed, 21 insertions(+), 5 deletions(-) diff --git a/lam/templates/domain.php b/lam/templates/domain.php index ce46cbfe..9cb3df69 100644 --- a/lam/templates/domain.php +++ b/lam/templates/domain.php @@ -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 diff --git a/lam/templates/logout.php b/lam/templates/logout.php index 560f7cbc..123f9996 100644 --- a/lam/templates/logout.php +++ b/lam/templates/logout.php @@ -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 diff --git a/lam/templates/tools.php b/lam/templates/tools.php index 0af182c1..6a712839 100644 --- a/lam/templates/tools.php +++ b/lam/templates/tools.php @@ -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 */