From 92380bf37769ed011c7559fb5564401efd1fbda9 Mon Sep 17 00:00:00 2001 From: Dominique Fournier Date: Wed, 19 Mar 2014 18:57:16 +0000 Subject: [PATCH] Add comments to authSympa git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@1225 bf3deb0d-5f1a-0410-827f-c0cc1f45334c --- authsympa.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/authsympa.php b/authsympa.php index 364cc08..6376f99 100644 --- a/authsympa.php +++ b/authsympa.php @@ -5,6 +5,7 @@ - a password - a list to check if the user is recorded in - a Sympa SOAP server WSDL + - the part of list which should be test : subscriber, owner, editor It use the SOAP protocol. So the PHP SOAP library is needed and the network must be open between the Web server and the Sympa server. */ /* POC : @@ -19,7 +20,8 @@ class authsympa extends auth { public $wsdl = null; public $list = null; - public $function = "subscriber"; // can be substriber, owner, editor + public $function = "subscriber"; // can be subscriber, owner, editor + private $client = null; private $authkey = null; private $email = null;