-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reworked external user name creation (data protection)
- Loading branch information
Fred Neumann
committed
Mar 12, 2020
1 parent
b3a18e4
commit 40265b4
Showing
2 changed files
with
44 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,18 +58,18 @@ public function __construct($a_plugin_object) | |
); | ||
|
||
$params[] = ilVhbShibAuthParam::_create( | ||
'external_user_take_login', | ||
'Lange vhb-Kennung als Login für externe Benutzer', | ||
'Externe Benutzer sollen mit der kompletten vhb-Benutzerkenung als Login-Name angelegt werden. Im Standard wird ein Login-Name generiert.' | ||
. '<br />Die vhb-Benutzerkennung hat die Form "[email protected]".', | ||
ilVhbShibAuthParam::TYPE_BOOLEAN | ||
'external_user_login_prefix', | ||
'Login-Präfix für externe Benutzer', | ||
'Externe Benutzer sollen mit diesem Präfix und einer anonymen Nummmer als Login-Name angelegt werden. Das entspricht dem Verfahren der alten vhb-Schnittstelle. Wenn das Feld leer ist ein Login-Name aus Vor- und Nachname generiert.', | ||
ilVhbShibAuthParam::TYPE_TEXT, | ||
'vhb.' | ||
); | ||
|
||
$params[] = ilVhbShibAuthParam::_create( | ||
'external_user_matrikulation', | ||
'Kurze vhb-Kennung als Matrikelnummer für externe Benutzer', | ||
'Für externe Benutzer wird die kurze vhb-Kennung ohne Suffix, also z.B. "123457X25" als Matrikelnummer eingetragen.' | ||
. '<br />Das entspricht dem Verfahren der alten vhb-Schnitstelle.', | ||
. '<br />Das entspricht dem Verfahren der alten vhb-Schnittstelle.', | ||
ilVhbShibAuthParam::TYPE_BOOLEAN | ||
); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters