|
|
|
|
gpwAddUser (Function) In french: gpwAjouteUtilisateur Adds a user to the User Groupware database.
// Values of new user clUser is gpwUser clUser.Email = EDT_Email clUser.Login = EDT_Login clUser.Password = EDT_Password clUser.LastName = EDT_LastName clUser.FirstName = EDT_FirstName clUser.PhoneNumber = EDT_Phone // Add the user nRes is int = gpwAddUser(clUser) SWITCH nRes CASE gpwOk Info("ok") CASE gpwActivationByEmail Info("Activation by email") OTHER CASE Info("Unable to add the user." + CR + ErrorInfo()) RETURN END // Activate the user SWITCH gpwActivateUser(clUser.Login) // Activation by email CASE gpwActivationByEmail PopupDisplay(POPUP_ValidateSubscription) // Immediate activation CASE gpwActivationImmédiate // Connects the user directly gpwConnectUser(clUser.Login, clUser.Password) // Displays the confirmation popup PopupDisplay(POPUP_ConfirmSubscription) OTHER CASE Info("Unable to activate the user." + CR + HErrorInfo()) END
Syntax
<Result> = gpwAddUser(<User>)
<Result>: Boolean or Integer constant
<User>: gpwUser variable Name of the gpwUser variable containing the information of the new user. Remarks Depending on the validation mode of new users configured in the management page, the user validation can be performed immediately or it can be done by email. gpwActivateUser activates the new user. Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|