DomCi : update the parameters definitions

git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@3280 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
2016-12-12 14:49:16 +00:00
parent b55ea95fae
commit 2e535af8d5
8 changed files with 164 additions and 54 deletions

View File

@@ -6,13 +6,19 @@
/** User authentication against Shibboleth */
class authshibboleth extends auth
{
/** The parameters returned by Shibboleth server */
/** The Lastname parameter returned by Shibboleth server */
public $lastnameParam = "sn";
/** The Firstname parameter returned by Shibboleth server */
public $firstnameParam = "givenName";
/** The mail parameter returned by Shibboleth server */
public $mailParam = "mail";
/** The others parameters returned by Shibboleth server */
public $otherFields = array ("ou", "o");
/** The optional URL use to authenticate the users */
public $urlAuthentificated = "";
/** The optional URL to disconnect the users */
public $urlLogout = "";
/** The optional URL to change the user password */
public $urlPasswd = "";
/** No connection to shibboleth */